This Repository includes some of my personally created CTF Challenges mainly for own educationally purposes.
Each Challenge includes three folders.
build
: this directory includes all files necessary to build the challenge locallydeploy
: this directory includes all files necessary to deploy the challenge locally on dockersolution
: this directory includes the intended solution and a WriteUp (ignore/remove this folder if you want to solve it on your own)
To deploy a challenge you first have to build the docker image:
sudo docker build -t <challenge name> deploy/Dockerfile
sudo docker run -d --rm -p1024:1024 <challenge name>