forked from sstarcher/docker-sensu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
52 lines (52 loc) · 866 Bytes
/
docker-compose.yaml
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
version: '2'
services:
api:
build:
context: .
args:
- http_proxy
- https_proxy
- no_proxy
links:
- redis
command: api
ports:
- '4567:4567'
server:
build:
context: .
args:
- http_proxy
- https_proxy
- no_proxy
links:
- redis
- api
command: server
client:
build:
context: .
args:
- http_proxy
- https_proxy
- no_proxy
links:
- redis
environment:
CLIENT_NAME: test
CLIENT_SUBSCRIPTIONS: all
CLIENT_ADDRESS: 127.0.0.1
ports:
- '3030:3030'
command: client
redis:
image: redis:3
uchiwa:
image: sstarcher/uchiwa
environment:
SENSU_DC_NAME: test
SENSU_HOSTNAME: api
links:
- api
ports:
- '80:3000'