-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.prod.yml
55 lines (51 loc) · 1.01 KB
/
docker-compose.prod.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
version: "3"
services:
web:
image: openspace:0.0.1
restart: always
container_name: web
ports:
- "8060:8000"
volumes:
- ./sock/:/sock/
- .:/code
- ./logs/:/logs/
command: sh entrypoint.sh
env_file:
- .env
depends_on:
- openspacedb
networks:
- openspace
nginx:
image: nginx:latest
container_name: nginx
restart: always
ports:
- 80:80
- 443:443
volumes:
- ./nginx/nginx-proxy.conf:/etc/nginx/conf.d/default.conf
- ../openspace-frontend/dist:/var/www/frontend
- ./sock/:/sock/
- ./logs/nginx:/var/log/nginx
depends_on:
- openspacedb
- web
networks:
- openspace
openspacedb:
image: mdillon/postgis:11-alpine
container_name: openspacedb
restart: always
volumes:
- ../postgres_data:/var/lib/postgresql/data/
ports:
- 5432:5432
env_file:
- postgres.env
networks:
- openspace
networks:
openspace:
driver: bridge