-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
103 lines (96 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
version: "3.8"
services:
backend :
container_name: backend
build:
context: .
dockerfile: Dockerfile_Backend
args:
APP_ENV: development
ports:
- "8000:8000"
networks:
- application-network
depends_on:
- database
environment:
- POSTGRES_PASSWORD=dev_password
- POSTGRES_USER=postgres
- POSTGRES_SERVER=database
frontend:
container_name: frontend
build:
context: .
dockerfile: Dockerfile_Frontend
ports:
- "3000:3000"
networks:
- application-network
depends_on:
- backend
- database
environment:
- NEXT_PUBLIC_BACKEND_URL=http://backend:8000
example_tool_light:
container_name: brainmasktool
build:
context: .
dockerfile: Dockerfile_BrainMaskTool_light
networks:
- application-network
depends_on:
- backend
- database
- frontend
- orthanc
environment:
- POSTGRES_PASSWORD=dev_password
- POSTGRES_USER=postgres
- POSTGRES_SERVER=database
orthanc:
build:
context: .
dockerfile: Dockerfile_Orthanc
args:
APP_ENV: internal_pacs
ports:
- "4026:4026"
- "8026:8026"
networks:
- application-network
volumes:
- ./orthanc:/etc/orthanc
orthanc_receiver:
build:
context: .
dockerfile: Dockerfile_OrthancReciever_kubernetes
args:
API_KEY: iv2YBLgB8X7IT3CiFyI9YYM82nA
BACKEND_URL: http://backend:8000
ORTHANC_URL: http://orthanc:8026
STUDY_CONFIG_FILE:
depends_on:
- orthanc
networks:
- application-network
volumes:
- ./internal_data:/app/internal_data
database:
container_name: database
image: postgres:14
restart: always
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=dev_password
- POSTGRES_USER=postgres
networks:
- application-network
volumes:
- pg_data:/var/lib/postgresql/data
networks:
application-network:
driver: bridge
volumes:
pg_data:
orthanc: