-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
stack-voting.yml
92 lines (82 loc) · 1.95 KB
/
stack-voting.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
version: '3.7'
x-default-opts:
&default-opts
logging:
options:
max-size: "1m"
# driver: "gelf"
# options:
# gelf-address: "udp://127.0.0.1:5000"
services:
redis:
<<: *default-opts
image: redis:alpine
command: redis-server --appendonly yes
volumes:
- redis-data:/data
networks:
- frontend
deploy:
endpoint_mode: dnsrr
db:
<<: *default-opts
image: postgres:9.6
volumes:
- db-data:/var/lib/postgresql/data
networks:
- backend
deploy:
endpoint_mode: dnsrr
vote:
<<: *default-opts
image: bretfisher/examplevotingapp_vote
networks:
- frontend
- proxy
deploy:
replicas: 2
labels:
traefik.http.routers.vote.rule: Host(`vote.dogvs.cat`)
traefik.http.routers.vote.entryPoints: websecure
traefik.http.routers.vote.service: vote
traefik.http.services.vote.loadbalancer.server.port: 80
result:
<<: *default-opts
image: bretfisher/examplevotingapp_result
networks:
- backend
- proxy
deploy:
replicas: 2
labels:
traefik.http.routers.result.rule: Host(`result.dogvs.cat`)
traefik.http.routers.result.entryPoints: websecure
traefik.http.routers.result.service: result
traefik.http.services.result.loadbalancer.server.port: 80
traefik.http.services.result.loadbalancer.sticky: "true"
worker:
<<: *default-opts
image: bretfisher/examplevotingapp_worker:java
networks:
- frontend
- backend
deploy:
replicas: 2
labels:
traefik.enable: "true"
networks:
frontend: {}
backend: {}
proxy:
external: true
volumes:
db-data:
driver: ${DOCKER_VOL_DRIVER:-local}
# for example set DOCKER_VOL_DRIVER="rexray/dobs"
driver_opts:
size: 1
redis-data:
driver: ${DOCKER_VOL_DRIVER:-local}
# for example set DOCKER_VOL_DRIVER="rexray/dobs"
driver_opts:
size: 1