]> git.somenet.org - pub/jan/aic18.git/blob - g6t4.yml
Merge branch '55-provide-single-command-to-start-up-the-entire-application' into...
[pub/jan/aic18.git] / g6t4.yml
1 version: '2'
2 services:
3   camunda:
4     build: ./camunda-overlay
5     container_name: camunda
6     ports:
7       - "8085:8085"
8     depends_on:
9       - service-analysis
10       - service-reporting
11       - service-twitter
12
13   service-analysis:
14     build: ./service-analysis
15     container_name: analysis
16     ports:
17       - "8081:8081"
18
19   service-failover:
20     build: ./service-failover
21     container_name: failover
22     volumes:
23       - /var/run/docker.sock:/var/run/docker.sock
24     restart: always
25
26   service-reporting:
27     build: ./service-reporting
28     container_name: reporting
29     ports:
30       - "8083:8083"
31
32   service-twitter:
33     build: ./service-twitter
34     container_name: twitter
35     ports:
36       - "8084:8084"
37
38   service-website:
39     build: ./service-website
40     container_name: website
41     ports:
42       - "8080:8080"
43     depends_on:
44       - camunda