Añadir 'docker-compose.yml'
This commit is contained in:
parent
a932848fe1
commit
f64cecb4bc
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal 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"
|
Loading…
Reference in New Issue
Block a user