The Ultimate Docker Cheat Sheet
devopscycle.com
The Ultimate Docker Cheat Sheet
1–10 of 27 posts
Re: The Ultimate Docker Cheat Sheet
#2cached Jan-14
https://web.archive.org/web/20240114095842/https://devopscyc...
Re: The Ultimate Docker Cheat Sheet
#3Re: The Ultimate Docker Cheat Sheet
#4Hacker news hug of death. cached Jan-14 https://web.archive.org/web/20240114095842/https://devopscyc...
Re: The Ultimate Docker Cheat Sheet
#5This looks useful, I wish I'd found it a month ago. One suggestion: could we have a more printer-friendly version (ie, without large patches of colour and without large patches of black)?
Re: The Ultimate Docker Cheat Sheet
#6Re: The Ultimate Docker Cheat Sheet
#7- Security warnings:
like: Note that ports which are not bound to the host (i.e., -p 5432:5432 instead of -p 127.0.0.1:5432:5432) will be accessible from the outside. This also applies if you configured UFW to block this specific port, as Docker manages its own iptables rules. https://docs.docker.com/network/packet-filtering-firewalls/
- using trivy scanner: "trivy image --ignore-unfixed ... "
---------------------
Why the security is important?
- https://sysdig.com/blog/zoom-into-kinsing-kdevtmpfsi/ : "Some of those Docker engines weren’t configured with authentication, which make them a perfect target for Kinsing attacks."
- https://sysdig.com/blog/cloud-defense-in-depth/ ( JULY 4, 2023: Cloud Defense in Depth: Lessons from the Kinsing Malware )
- https://thenewstack.io/kinsing-malware-targets-kubernetes/ ( Jan 13th, 2023 , Kinsing Malware Targets Kubernetes )
Re: The Ultimate Docker Cheat Sheet
#8Please add - Security warnings: like: Note that ports which are not bound to the host (i.e., -p 5432:5432 instead of -p 127.0.0.1:5432:5432) will be accessible from the outside. This also applies if you configured UFW to block this specific port, as Docker manages its own iptables rules. https://docs.docker.com/network/packet-filtering-firewalls/ - using trivy scanner: "trivy image --ignore-unfixed ... " ------------…
Re: The Ultimate Docker Cheat Sheet
#9Re: The Ultimate Docker Cheat Sheet
#10`docker run --entrypoint /bin/sh -it --rm the-image` IIRC