forked from mirceaulinic/ripe76-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
36 lines (35 loc) · 859 Bytes
/
docker-compose.yml
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
version: '2.1'
services:
napalm-logs:
image: mirceaulinic/napalm-logs:0.5.0
hostname: napalm-logs
container_name: napalm-logs
environment:
- LOG_LEVEL
volumes:
- ./napalm-logs.conf:/etc/napalm/logs
network_mode: host
ports:
- "49017"
salt-master:
image: mirceaulinic/salt-master:2017.7.5
hostname: salt-master
container_name: salt-master
environment:
- LOG_LEVEL
volumes:
- ./master:/etc/salt/master
- ./pillar/:/etc/salt/pillar/
- ./states/:/etc/salt/states/
- ./reactor:/etc/salt/reactor/
network_mode: host
salt-proxy:
image: mirceaulinic/salt-proxy:2017.7.5
hostname: ${PROXYID}
container_name: salt-proxy-${PROXYID}
volumes:
- ./proxy:/etc/salt/proxy
environment:
- LOG_LEVEL
- PROXYID
network_mode: host