arp-spoofing/compose.yml
2025-01-21 09:41:25 +01:00

24 lines
No EOL
377 B
YAML

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