Hacker News new | ask | show | jobs
by vinceguidry 407 days ago
Docker in Docker is not a waste of resources, they just make the same container runtime the container is running on available to it. Really a better solution than a control plane like Kubernetes.
1 comments

Aren't you describing docker-out-of-docker rather than docker-in-docker?
No, you're running docker inside a docker container. The container provides a docker daemon that just forwards the connection to the same runtime. It's not running two dockers, but you are still running docker inside docker.

https://medium.com/@moshedana058/understanding-docker-in-doc...