The talk is “An Attacker Looks at Docker: Approaching Multi-Container Applications“ by Wesley McGrew and can be found here. My presentation at TASK Google Slides – create and edit presentations online, for free. Create a new presentation and edit with others at the same time. Get stuff done with or without an internet connection. Use Slides to edit PowerPoint files. Free from Google. create and edit presentations online, for free. Summary of the Content What is Docker? Docker is a […]
Read moreSetting up Docker on your Computer
For Windows and Mac OS X there’s an easy new application called Docker Desktop that will contain everything you need, download it here. For Linux, just follow the guides here. If you want a GUI on Linux, and I would highly recommend it, install Portainer by running the following commands after installing docker: $ docker volume create portainer_data$ docker run -d -p 8000:8000 -p 9000:9000 –name=portainer –restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer Testing Docker After you’ve successfully installed Docker Desktop, […]
Read more