diff options
author | bloodstalker <thabogre@gmail.com> | 2021-02-02 15:00:10 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2021-02-02 15:00:10 +0000 |
commit | 5bffed57119c00ed8511bc33c08506910abd3710 (patch) | |
tree | a73f216cdecf04f48d02fe67542afaebfa12f30f /nushin/docker-compose.yaml | |
parent | matrix server update...almost working...WIP (diff) | |
download | dockerimages-5bffed57119c00ed8511bc33c08506910abd3710.tar.gz dockerimages-5bffed57119c00ed8511bc33c08506910abd3710.zip |
update
Diffstat (limited to 'nushin/docker-compose.yaml')
-rw-r--r-- | nushin/docker-compose.yaml | 20 |
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 |