This repository was archived by the owner on Nov 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
111 lines (99 loc) · 2.21 KB
/
docker-compose.yml
File metadata and controls
111 lines (99 loc) · 2.21 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
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
104
105
106
107
108
109
110
111
version: "3.9"
services:
mongo:
image: ${IMAGES_MONGO}
restart: unless-stopped
volumes:
- ${AAA_CONFIG_PROJECT_DATA_PATH}/mongo:/data/db
networks:
cytomine-network:
ipv4_address: 172.18.0.2
postgis:
image: ${IMAGES_POSTGIS}
restart: unless-stopped
volumes:
- ${AAA_CONFIG_PROJECT_DATA_PATH}/postgis/data:/var/lib/postgresql/data
networks:
cytomine-network:
ipv4_address: 172.18.0.3
pims-cache:
image: ${IMAGES_PIMS_CACHE}
restart: unless-stopped
networks:
cytomine-network:
ipv4_address: 172.18.0.4
pims:
image: ${IMAGES_PIMS}
restart: unless-stopped
depends_on:
- nginx
- pims-cache
volumes:
- ${AAA_CONFIG_PROJECT_DATA_PATH}/images:${CONTAINER_PATHS_IMAGES}
networks:
cytomine-network:
ipv4_address: 172.18.0.5
core:
image: ${IMAGES_CORE}
restart: unless-stopped
depends_on:
- nginx
- postgis
- mongo
- iam
- app-engine
volumes:
- /etc/localtime:/etc/localtime
networks:
cytomine-network:
ipv4_address: 172.18.0.6
web_ui:
image: ${IMAGES_WEB_UI}
restart: unless-stopped
volumes:
- /etc/localtime:/etc/localtime
networks:
cytomine-network:
ipv4_address: 172.18.0.7
nginx:
image: ${IMAGES_NGINX}
restart: unless-stopped
ports:
- 80:80
networks:
cytomine-network:
ipv4_address: 172.18.0.8
app-engine:
image: ${IMAGES_APPENGINE}
restart: unless-stopped
depends_on:
- registry
volumes:
- ${AAA_CONFIG_PROJECT_DATA_PATH}/app-engine:/data
networks:
cytomine-network:
ipv4_address: 172.18.0.9
registry:
image: ${IMAGES_REGISTRY}
restart: unless-stopped
volumes:
- ${AAA_CONFIG_PROJECT_DATA_PATH}/registry:/data
networks:
cytomine-network:
ipv4_address: 172.18.0.10
iam:
image: ${IMAGES_IAM}
restart: unless-stopped
depends_on:
- nginx
- postgis
networks:
cytomine-network:
ipv4_address: 172.18.0.11
networks:
cytomine-network:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.18.0.0/16