Run This Website Locally
Want to run this CTF index locally or on your own server? It's just one command away.
Run the Container
This website is packaged as a Docker container. You can run it instantly with the following command:
docker run -d --restart always -p 80:80 --name cyberlessons101 joshbeck2024/cyberlessons101-website:latest Once running, open http://localhost in your browser.
Cleanup
To stop and remove the website container:
docker stop cyberlessons101 && docker rm cyberlessons101