From 1cfa1b9c50fc04c8292efa6051ef3f1c7f371ceb Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Mon, 26 Jul 2021 13:20:45 -0400 Subject: [PATCH] Docker: Add a README.md --- docker/README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docker/README.md diff --git a/docker/README.md b/docker/README.md new file mode 100644 index 000000000..d01890b23 --- /dev/null +++ b/docker/README.md @@ -0,0 +1,20 @@ +# Monkey Island Docker Image + +## About + +This directory contains the necessary artifacts for building an Infection +Monkey Docker image. + +## Building a Docker image +1. Create a clean Ubuntu 18.04 VM (not WSL). +1. Copy the `docker/` directory to `$HOME/` in the VM. +1. On the VM, `cd $HOME/docker` +1. Run `sudo -v`. +1. Execute `./build_docker.sh`. This will pull all necessary dependencies + and build the Docker image. + +NOTE: This script is intended to be run from a clean VM. You can also manually +remove build rtifacts by running `docker/clean.sh` + +## Running the Docker Image +See `docker/DOCKER_README.md` for instructions on running the docker image.