This repository has been archived by the owner on Aug 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
116 lines (104 loc) · 2.04 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
104
105
106
107
108
109
110
111
112
113
114
115
116
version: '3'
services:
##
# Application container
#
app:
image: openwebslides/openwebslides:latest
env_file:
- openwebslides.env
environment:
- RAILS_ENV=production
- NODE_ENV=production
volumes:
- public:/app/public/
- data:/app/data/
- uploads:/app/tmp/uploads/
- /etc/hosts:/etc/dockerhosts
depends_on:
- postgres
- sidekiq
- redis
links:
- postgres
- redis
restart: always
##
# Database container
#
postgres:
image: postgres:9.6
volumes:
- postgres:/var/lib/postgresql/data/
restart: always
##
# Sidekiq container
#
sidekiq:
image: openwebslides/openwebslides:latest
env_file:
- openwebslides.env
environment:
- RAILS_ENV=production
- NODE_ENV=production
volumes:
- /var/run/postgresql/:/var/run/postgresql/
- data:/app/data/
- uploads:/app/tmp/uploads/
- /etc/hosts:/etc/dockerhosts
depends_on:
- postgres
- redis
links:
- redis
command: bundle exec sidekiq
restart: always
##
# Redis container
#
redis:
image: redis:3.2
volumes:
- redis:/var/lib/redis/data/
restart: always
##
# Web server container
#
nginx:
image: nginx:1.13
volumes:
- public:/app/public/
- ${PWD}/nginx/:/etc/nginx/
- certs:/etc/letsencrypt/:ro
- certs-data:/data/letsencrypt/
- uploads:/app/tmp/uploads/
ports:
- "0.0.0.0:80:80"
- "0.0.0.0:443:443"
depends_on:
- app
links:
- app
restart: always
volumes:
# Repository data volume
data:
# Public assets (frontend) volume
public:
# Temporary uploaded data
uploads:
# Database volume
postgres:
# Redis volume
redis:
# Certificate data volumes
certs:
certs-data:
# Explicitly specify a subnet different to docker-compose's default,
# because it interferes with the UGent eduroam subnet
networks:
default:
ipam:
driver: default
config:
- subnet: 192.168.8.1/24