1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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