-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (49 loc) · 1.15 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
version: '3.7'
services:
wikiloc-earth-layar:
image: jonamat/wikiloc-earth-layer
environment:
PROTOCOL: https
HOST: wikiloc-earth-layer.jonamat.cloud
PORT: 80
networks:
- caddy
deploy:
mode: replicated
replicas: 1
update_config:
parallelism: 1
order: start-first
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
labels:
caddy: wikiloc-earth-layer.jonamat.cloud
caddy.reverse_proxy: "{{upstreams 80}}"
wikiloc-earth-layar-testing:
image: jonamat/wikiloc-earth-layer-testing
environment:
PROTOCOL: https
HOST: wikiloc-earth-layer-testing.jonamat.cloud
PORT: 80
networks:
- caddy
deploy:
mode: replicated
replicas: 1
update_config:
parallelism: 1
order: start-first
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
labels:
caddy: wikiloc-earth-layer-testing.jonamat.cloud
caddy.reverse_proxy: "{{upstreams 80}}"
networks:
caddy:
external: true