aboutsummaryrefslogtreecommitdiffstats
path: root/nushin/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'nushin/docker-compose.yaml')
-rw-r--r--nushin/docker-compose.yaml20
1 files changed, 20 insertions, 0 deletions
diff --git a/nushin/docker-compose.yaml b/nushin/docker-compose.yaml
new file mode 100644
index 0000000..8ae0a51
--- /dev/null
+++ b/nushin/docker-compose.yaml
@@ -0,0 +1,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