master
yml 38 lines 630 Bytes
Raw
1 data:
2 build: ./data
3 volumes:
4 - /data
5 command: sleep 1000000
6
7 bootstrap:
8 build: ./bootstrap
9 command: daemon --debug --init
10 expose:
11 - "4011"
12 - "4012/udp"
13 environment:
14 GOLOG_LOG_LEVEL: debug
15
16 server:
17 build: ./server
18 links:
19 - bootstrap
20 volumes_from:
21 - data
22 expose:
23 - "4021"
24 - "4022/udp"
25 environment:
26 GOLOG_LOG_LEVEL: debug
27
28 client:
29 build: ./client
30 links:
31 - bootstrap
32 volumes_from:
33 - data
34 expose:
35 - "4031"
36 - "4032/udp"
37 environment:
38 GOLOG_LOG_LEVEL: debug