guardicore / monkey

Infection Monkey - An open-source adversary emulation platform
https://www.guardicore.com/infectionmonkey/
GNU General Public License v3.0
6.63k stars 773 forks source link

Add docker container support for windows and linux #1163

Open VakarisZ opened 3 years ago

VakarisZ commented 3 years ago

Is your feature request related to a problem? Please describe. ATM monkey docker containers can't be deployed on windows or mac.

Describe the solution you'd like Docker containers deployable on windows and mac, with clear instructions on how to do it.

Blocked either by #1157 or by #1158. Otherwise, on windows we could:

docker run --name monkey-island -p 5000:5000 -p 5001:5001 --env MONKEY_MONGO_URL=mongodb://[HOST_IP]:27017/monkeyisland -d guardicore/monkey-island:1.10.0

docker run --name monkey-mongo -p 27017:27017 --expose 27017 -v [ABS_PATH_TO_DB_DIR]:/data/db -d mongo:4.2
ilija-lazoroski commented 1 month ago

I am able to deploy it on mac. We should check on windows and close this issue.