arp-spoofing/compose.yml

22 lines
No EOL
331 B
YAML

services:
webserver:
build: docker/apache2
ports:
- 5000:5000
- 80:80
volumes:
- .:/code
networks:
- mynetwork
attacker:
build: docker/attacker
ports:
- 5001:5001
volumes:
- .:/code
networks:
- mynetwork
networks:
mynetwork:
external: false