aboutsummaryrefslogtreecommitdiffstats
path: root/nushin/docker-compose.yaml
blob: 67d4a943351db50c3407621b6561b10102a5b2cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"]
    privileged: true
  # hids:
  #   # image: atomicorp/ossec-docker
  #   build:
  #     context: ./ossec-docker
  #   networks:
  #     - hacknet
  #   # entrypoint: ["tail", "-f", "/dev/null"]
  #   # volumes:
  #   #   - hids-config:/var/ossec/
  #   volumes:
  #     - /sys/fs/cgroup:/sys/fs/cgroup:ro
networks:
  hacknet:
    driver: bridge
    # attachable: true
volumes:
  hids-config: