forked from shramos/polymorph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (44 loc) · 874 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
37
38
39
40
41
42
43
44
45
46
47
version: '3.5'
services:
polymorph:
container_name: polymorph
hostname: polymorph
build:
context: .
dockerfile: ./docker/Dockerfile
volumes:
- ./:/var/develop
- kali-root:/root
- kali-postgresql:/var/lib/postgresql
privileged: true
tty: true
networks:
vnetwork:
ipv4_address: 10.24.0.2
alice:
container_name: alice
hostname: alice
build:
context: .
dockerfile: ./docker/Dockerfile-victim
networks:
vnetwork:
ipv4_address: 10.24.0.3
bob:
container_name: bob
hostname: bob
build:
context: .
dockerfile: ./docker/Dockerfile-victim
networks:
vnetwork:
ipv4_address: 10.24.0.4
volumes:
kali-root:
kali-postgresql:
networks:
vnetwork:
driver: bridge
ipam:
config:
- subnet: 10.24.0.0/16