-
Notifications
You must be signed in to change notification settings - Fork 24
/
docker-compose.yml
62 lines (62 loc) · 1.28 KB
/
docker-compose.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
services:
msls:
build: ./dev-local
command: bash -c "python app.py"
ports:
- "8080:8080"
profiles:
- mocksls
db:
image: postgres
env_file:
- docker-compose/db-env-vars.env
ports:
- "5432:5432"
web:
build: .
command: ./docker-compose/bluebutton_server_start.sh
env_file:
- docker-compose/web-env-vars.env
- docker-compose/slsx-env-vars.env
# local devel specific variables go here!
- .env
volumes:
- .:/code
ports:
- "8000:8000"
- "5678:5678"
depends_on:
- db
profiles:
- slsx
platform: linux/amd64
web_msls:
build: .
command: ./docker-compose/bluebutton_server_start.sh
env_file:
- docker-compose/web-env-vars.env
- docker-compose/msls-env-vars.env
# local devel specific variables go here!
- .env
volumes:
- .:/code
ports:
- "8000:8000"
- "5678:5678"
depends_on:
- db
- msls
profiles:
- mocksls
platform: linux/amd64
unittests:
build: .
command: python3 -m debugpy --listen 0.0.0.0:6789 --wait-for-client runtests.py
env_file:
- docker-compose/unittests-env-vars.env
ports:
- "6789:6789"
volumes:
- .:/code
profiles:
- tests