forked from alexellis/faas-example-voting-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
87 lines (80 loc) · 2.33 KB
/
docker-compose.yml
File metadata and controls
87 lines (80 loc) · 2.33 KB
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
version: "3"
services:
# Core API services are pinned, HA is provided for functions.
gateway:
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
ports:
- 8080:8080
image: functions/gateway:0.5.1
networks:
- functions
deploy:
placement:
constraints: [node.role == manager]
prometheus:
image: quay.io/prometheus/prometheus:latest
volumes:
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
- ./prometheus/alert.rules:/etc/prometheus/alert.rules
command: "-config.file=/etc/prometheus/prometheus.yml -storage.local.path=/prometheus -storage.local.memory-chunks=10000 --alertmanager.url=http://alertmanager:9093"
ports:
- 9090:9090
depends_on:
- gateway
- alertmanager
environment:
no_proxy: "gateway"
networks:
- functions
deploy:
placement:
constraints: [node.role == manager]
# Un-comment this section to enable auto-scaling
# alertmanager:
# image: quay.io/prometheus/alertmanager
# environment:
# no_proxy: "gateway"
# volumes:
# - ./prometheus/alertmanager.yml:/alertmanager.yml
# command:
# - '-config.file=/alertmanager.yml'
# networks:
# - functions
# ports:
# - 9093:9093
# deploy:
# placement:
# constraints: [node.role == manager]
# Voting app stack
vote:
image: alexellis2/faas-vote
ports:
- "5000:80"
networks:
- functions
result:
image: alexellis2/faas-vote-result
ports:
- "5001:5001"
networks:
- functions
process_vote:
labels:
function: "true"
image: alexellis2/faas-vote-process
depends_on:
- gateway
networks:
- functions
db:
image: postgres:9.5
networks:
- functions
ports:
- "5432:5432"
networks:
functions:
driver: overlay
# Docker does not support this option yet - maybe create outside of the stack and reference as "external"?
#attachable: true