-
-
Notifications
You must be signed in to change notification settings - Fork 130
/
voting.dockerapp
114 lines (103 loc) · 2.58 KB
/
voting.dockerapp
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
# This section contains your application metadata.
# Version of the application
version: 0.1.0
# Name of the application
name: voting
# A short description of the application
description:
# Namespace to use when pushing to a registry. This is typically your Hub username.
namespace: dogvscat
# List of application maintainers with name and email for each
maintainers:
- name: Bret Fisher
email: bret@bretfisher.com
---
# This section contains the Compose file that describes your application services.
version: '3.7'
services:
redis:
image: redis:alpine
command: redis-server --appendonly yes
volumes:
- redis-data:/data
networks:
- frontend
deploy:
endpoint_mode: dnsrr
# logging:
# driver: "gelf"
# options:
# gelf-address: "udp://127.0.0.1:5000"
db:
image: postgres:9.6
volumes:
- db-data:/var/lib/postgresql/data
networks:
- backend
deploy:
endpoint_mode: dnsrr
# logging:
# driver: "gelf"
# options:
# gelf-address: "udp://127.0.0.1:5000"
vote:
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
# logging:
# driver: "gelf"
# options:
# gelf-address: "udp://127.0.0.1:5000"
result:
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"
# logging:
# driver: "gelf"
# options:
# gelf-address: "udp://127.0.0.1:5000"
worker:
image: bretfisher/examplevotingapp_worker:java
networks:
- frontend
- backend
deploy:
replicas: 2
# logging:
# driver: "gelf"
# options:
# gelf-address: "udp://127.0.0.1:5000"
networks:
frontend: {}
backend: {}
proxy:
external: true
volumes:
db-data:
driver: rexray/dobs
driver_opts:
size: 1
redis-data:
driver: rexray/dobs
driver_opts:
size: 1
---
# This section contains the default values for your application settings.
{}