You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
643 B

version: '3'
services:
attacker:
image: kalilinux/kali-rolling
container_name: attacker
networks:
localnet:
ipv4_address: 192.168.0.10
tty: true
stdin_open: true
victim:
image: kalilinux/kali-rolling
container_name: victim
networks:
localnet:
ipv4_address: 192.168.0.20
tty: true
stdin_open: true
gateway:
image: kalilinux/kali-rolling
container_name: gateway
networks:
localnet:
ipv4_address: 192.168.0.30
tty: true
stdin_open: true
networks:
localnet:
driver: bridge
ipam:
config:
- subnet: 192.168.0.0/24