Añadir 'docker-compose.yml'

This commit is contained in:
borekon 2023-11-14 10:29:21 +00:00
parent a932848fe1
commit f64cecb4bc

19
docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
version: '3'
services:
island:
image: infectionmonkey/monkey-island:latest
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"