19 lines
504 B
YAML
19 lines
504 B
YAML
version: '3'
|
|
|
|
services:
|
|
island:
|
|
image: infectionmonkey/monkey-island:v2.3.0
|
|
depends_on:
|
|
- mongo
|
|
network_mode: "host"
|
|
user: 1000:1000
|
|
volumes:
|
|
- ./monkey_island_data:/monkey_island_data
|
|
restart: "unless-stopped"
|
|
command: --server-config="/monkey_island_data/server_config.json"
|
|
mongo:
|
|
image: mongo:6.0
|
|
volumes:
|
|
- ./db:/data/db
|
|
restart: "unless-stopped"
|
|
network_mode: "host" |