We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 874a4bc commit 9eccee1Copy full SHA for 9eccee1
dockercloud.yml
@@ -0,0 +1,33 @@
1
+db:
2
+ image: 'postgres:9.4'
3
+ restart: always
4
+redis:
5
+ image: 'redis:latest'
6
7
+result-app:
8
+ autoredeploy: true
9
+ image: 'instavote/result-app:latest'
10
+ ports:
11
+ - '80:80'
12
13
+lb:
14
15
+ image: 'dockercloud/haproxy:latest'
16
+ links:
17
+ - web
18
19
+ - "80:80"
20
+ roles:
21
+ - global
22
23
+voting-app:
24
25
+ image: 'instavote/voting-app:latest'
26
27
+ target_num_containers: 5
28
+
29
+worker:
30
31
+ image: 'instavote/worker:latest'
32
33
+ target_num_containers: 3
0 commit comments