blob: 8ae0a51d8b2345eba7a67a28734c63c7bd53bc61 (
plain) (
tree)
|
|
version: "3.4"
services:
victim:
image: victim
build:
context: ./victim
networks:
- hacknet
entrypoint: ["tail", "-f", "/dev/null"]
spoofer:
image: spoofer
build:
context: ./spoofer
networks:
- hacknet
entrypoint: ["tail", "-f", "/dev/null"]
networks:
hacknet:
driver: overlay
attachable: true
|