-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 1.19 KB
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
db:
container_name: postgresql_database
image: postgres:latest
restart: always
ports:
- 5432:5432
volumes:
- postgresql_database_data:/var/lib/postgresql
environment:
POSTGRES_DB: test_project
POSTGRES_USER: kiwi
POSTGRES_PASSWORD: kiwi
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4
restart: always
ports:
- 8888:80
environment:
PGADMIN_DEFAULT_EMAIL: pgadmin@kiwitcms.org
PGADMIN_DEFAULT_PASSWORD: kiwi
web:
container_name: web
image: kiwitcms/github-marketplace:latest
depends_on:
- db
restart: always
ports:
- 80:8080
- 443:8443
volumes:
- ./test_project/settings.py:/venv/lib64/python3.11/site-packages/tcms_settings_dir/zzz_test_settings.py:z,ro
environment:
QUAY_IO_TOKEN: test-me
KIWI_TENANTS_DOMAIN: testing.example.bg
DATABASE_URL: postgres://kiwi:kiwi@db:5432/test_project
RUNNING_AS_CONTAINER: "true"
volumes:
postgresql_database_data: