- Install Docker CE from here
- Run the docker image (automatic download)
$ docker run -it -p 8080:80 secunive/seclab:lab3
- The above command will start a web server listening on localhost:8080 . Leave it running while you carry out the tasks. When you are done you can interrupt it by issuing ctrl-c
Go to task 1!
Note: it has been reported that in some installations mysql
is allocating too many resources crashing the container. Adding the following option fixed the issue:
docker run --ulimit nofile=262144:262144 -it -p 8080:80 secunive/seclab:lab3