-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
61 lines (55 loc) · 1.8 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: "2"
services:
agentdebian:
image: debian:jessie
command: /usr/local/bin/tactycal -d
volumes:
- ./build/usr/bin/tactycal:/usr/local/bin/tactycal
- ./my_conf.conf:/etc/tactycal/agent.conf
- .state/debian:/var/opt/tactycal/state
environment:
- LABEL=debianenv
agentubuntu:
image: ubuntu:latest
command: /usr/local/bin/tactycal -d
volumes:
- ./build/usr/bin/tactycal:/usr/local/bin/tactycal
- ./my_conf.conf:/etc/tactycal/agent.conf
- .state/ubuntu:/var/opt/tactycal/state
environment:
- LABEL=ubuntuenv
agentrhel:
image: richxsl/rhel7
command: /usr/local/bin/tactycal -d
volumes:
- ./build/usr/bin/tactycal:/usr/local/bin/tactycal
- ./my_conf.conf:/etc/tactycal/agent.conf
- .state/rhel:/var/opt/tactycal/state
agentcentos:
image: centos:7
command: /usr/local/bin/tactycal -d
volumes:
- ./build/usr/bin/tactycal:/usr/local/bin/tactycal
- ./my_conf.conf:/etc/tactycal/agent.conf
- .state/centos:/var/opt/tactycal/state
agentopensuse:
image: opensuse:42.2
command: /usr/local/bin/tactycal -d
volumes:
- ./build/usr/bin/tactycal:/usr/local/bin/tactycal
- ./my_conf.conf:/etc/tactycal/agent.conf
- .state/opensuse:/var/opt/tactycal/state
agentsles:
image: gitlab.3fs.si:4567/tactycal/tactycal:sles12sp2
command: /usr/local/bin/tactycal -d
volumes:
- ./build/usr/bin/tactycal:/usr/local/bin/tactycal
- ./my_conf.conf:/etc/tactycal/agent.conf
- .state/sles:/var/opt/tactycal/state
agentamzn:
image: amazonlinux:2016.09
command: /usr/local/bin/tactycal -d
volumes:
- ./build/usr/bin/tactycal:/usr/local/bin/tactycal
- ./my_conf.conf:/etc/tactycal/agent.conf
- .state/amzn:/var/opt/tactycal/state