DEV Community

Discussion on: How to Run Docker Inside Docker?

Collapse
 
raphink profile image
Raphaël Pinson

The main need for Docker in Docker for CI/CD is to build containers (or run them for tests).

For this, another approach is to get rid of Docker altogether and switch to Buildah for building and Podman for running, since they don't require a daemon like Docker.

Collapse
 
piyushbagani15 profile image
Piyush Bagani

Thanks For the Suggestion. I will surely look into this.