-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
97 lines (90 loc) · 2.02 KB
/
docker-compose.yaml
File metadata and controls
97 lines (90 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
services:
sshesame:
build:
context: ./sshesame
dockerfile: Dockerfile
volumes:
- sshesame-data:/data/sshesame
networks:
honeypot_net:
ipv4_address: 192.168.125.40
ports:
- "2221:2022"
cowrie:
build:
context: ./cowrie
dockerfile: docker/Dockerfile
volumes:
- cowrie-data:/data/cowrie
networks:
honeypot_net:
ipv4_address: 192.168.125.30
ports:
- "2222:2222"
debian:
build:
context: ./debian
dockerfile: Dockerfile
container_name: debian_host
hostname: debian
command: /usr/sbin/sshd -D
ports:
- "2224:22"
networks:
honeypot_net:
ipv4_address: 192.168.125.90
prober:
image: prober
# Comment out the line below to run on the honeypot network.
# network_mode: "host"
container_name: prober
hostname: prober
build:
context: ./prober
dockerfile: Dockerfile
command: python3 /prober/src/probe.py
environment:
- GATEWAY_MAC=aa:bb:cc:dd:ee:ff
working_dir: /prober/src
volumes:
- type: bind
source: ./prober/results
target: /prober/results
- type: bind
source: ./prober/src
target: /prober/src
# Comment out the 'networks' option below to run in network mode 'host'.
networks:
honeypot_net:
ipv4_address: 192.168.125.10
honeytrap:
image: honeytrap/honeytrap:latest
networks:
honeypot_net:
ipv4_address: 192.168.125.44
ports:
- "2225:8022"
heralding:
build:
context: ./heralding
dockerfile: Dockerfile
volumes:
- heralding-data:/data/heralding
networks:
honeypot_net:
ipv4_address: 192.168.125.42
ports:
- "2223:22"
networks:
honeypot_net:
driver: bridge
ipam:
config:
- subnet: 192.168.125.0/24
driver_opts:
com.docker.network.bridge.name: honeypots
volumes:
sshesame-data:
cowrie-data:
heralding-data:
honeytrap-data: