forked from geosolutions-it/digital-twin-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
38 lines (37 loc) · 772 Bytes
/
docker-compose.yaml
File metadata and controls
38 lines (37 loc) · 772 Bytes
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
version: "3.8"
services:
webapp:
restart: unless-stopped
build: .
container_name: digital_twin_toolbox
volumes:
- ./:/usr/src/app
- /usr/src/app/node_modules
networks:
- node_network
env_file:
- .env
postgres:
image: postgis/postgis:16-3.4
container_name: digital_twin_toolbox_postgis
restart: unless-stopped
networks:
- node_network
env_file:
- .env
nginx:
restart: unless-stopped
container_name: digital_twin_toolbox_nginx
image: nginx:1.25.3
ports:
- ${NGINX_PORT}:80
depends_on:
- webapp
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
networks:
- node_network
env_file:
- .env
networks:
node_network: