-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
50 lines (46 loc) · 1.02 KB
/
docker-compose.yaml
File metadata and controls
50 lines (46 loc) · 1.02 KB
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
version: '3.9'
services:
proxy:
image: haproxy:1
container_name: proxy
restart: always
ports:
- 14500:14500
volumes:
- ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:Z
networks:
custom_network:
ipv4_address: 192.168.1.2
wireshark:
image: "ffeldhaus/wireshark:0.5"
container_name: wireshark
restart: always
privileged: true
network_mode: "service:proxy"
environment:
- XPRA_PW=wireshark
volumes:
- ./data:/home/wireshark
secutils:
image: michaelborck/secutils
container_name: secutils
privileged: true
command: ["/bin/sh", "-c", "/start.sh && exec /usr/bin/supervisord"]
ports:
- "6080:80"
environment:
- USER=root
- PASSWORD=rootpassword
- SSL=false
volumes:
- ./data:/root/Desktop/data
networks:
custom_network:
ipv4_address: 192.168.1.5
networks:
custom_network:
driver: bridge
ipam:
driver: default
config:
- subnet: 192.168.1.0/24