-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-swarm.yml
215 lines (211 loc) · 4.88 KB
/
docker-swarm.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
version: "3.7"
services:
# DDI
dns:
image: intranet-dns
ports:
- "53:53"
- "53:53/udp"
networks:
- ddi
deploy:
restart_policy:
condition: on-failure
placement:
constraints:
- node.role == manager
# Web
reverse-proxy:
image: intranet-reverse-proxy
ports:
- "80:80"
- "443:443"
networks:
- web
secrets:
- source: site_privkey.pem
mode: 0000
- source: site_fullchain.pem
mode: 0000
- source: home_privkey.pem
mode: 0000
- source: home_fullchain.pem
mode: 0000
- source: test_privkey.pem
mode: 0000
- source: test_fullchain.pem
mode: 0000
- htpasswd
deploy:
placement:
constraints:
- node.role == manager
restart_policy:
condition: on-failure
site:
image: {{ SITE_IMAGE }}
networks:
- web
deploy:
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.site == true
storage:
image: ntrrg/nginx:http
networks:
- web
volumes:
- type: bind
source: {{ ROOT }}/srv/storage/data
target: /usr/share/nginx/html
read_only: true
deploy:
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.storage == true
filebrowser:
image: filebrowser/filebrowser:v2.0.3
command: -b /admin -p 8080
user: "1000:1000"
networks:
- web
volumes:
- type: bind
source: {{ ROOT }}/srv/storage/data
target: /srv
- type: bind
source: {{ ROOT }}/srv/storage/database.db
target: /database.db
deploy:
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.storage == true
mirrors:
image: ntrrg/nginx:http
networks:
- web
volumes:
- type: bind
source: {{ ROOT }}/srv/mirrors
target: /usr/share/nginx/html
read_only: true
deploy:
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.mirrors == true
git:
image: gogs/gogs:0.11.53
ports:
- "22:22"
networks:
- web
volumes:
- type: bind
source: {{ ROOT }}/srv/gogs
target: /data
deploy:
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.git == true
ci-server:
depends_on:
- git
image: drone/drone:0.8.6
environment:
- DRONE_HOST=https://ci.{{ DOMAIN }}
- DRONE_ADMIN={{ USER }}
- DRONE_GOGS=true
- DRONE_GOGS_URL=https://git.{{ DOMAIN }}
- DRONE_SECRET={{ DRONE_SECRET }}
networks:
- web
volumes:
- type: bind
source: {{ ROOT }}/srv/drone
target: /var/lib/drone
deploy:
endpoint_mode: dnsrr
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.ci-server == true
ci-builder:
depends_on:
- ci-server
image: drone/agent:0.8.6
command: agent
environment:
- DRONE_ROOT=ci-server:9000
- DRONE_SECRET={{ DRONE_SECRET }}
networks:
- web
volumes:
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
deploy:
mode: global
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.ci-builder == true
registry:
image: registry:2
networks:
- web
volumes:
- type: bind
source: {{ ROOT }}/srv/registry
target: /var/lib/registry
deploy:
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.registry == true
docker-registry:
image: registry:2
environment:
- REGISTRY_PROXY_REMOTEURL=https://registry-1.docker.io
networks:
- web
volumes:
- type: bind
source: {{ ROOT }}/srv/docker-registry
target: /var/lib/registry
deploy:
restart_policy:
condition: on-failure
placement:
constraints:
- node.labels.docker-registry == true
networks:
ddi:
web:
secrets:
site_privkey.pem:
file: {{ ROOT }}/etc/letsencrypt/archive/{{ DOMAIN }}/privkey1.pem
site_fullchain.pem:
file: {{ ROOT }}/etc/letsencrypt/archive/{{ DOMAIN }}/fullchain1.pem
home_privkey.pem:
file: {{ ROOT }}/etc/letsencrypt/archive/home.{{ DOMAIN }}/privkey1.pem
home_fullchain.pem:
file: {{ ROOT }}/etc/letsencrypt/archive/home.{{ DOMAIN }}/fullchain1.pem
test_privkey.pem:
file: {{ ROOT }}/etc/letsencrypt/archive/test.{{ DOMAIN }}/privkey1.pem
test_fullchain.pem:
file: {{ ROOT }}/etc/letsencrypt/archive/test.{{ DOMAIN }}/fullchain1.pem
htpasswd:
file: {{ ROOT }}/etc/htpasswd