NDS Labs image for Docker-in-Docker support based on dind. This image adds a few utilities on top of the base dind and changes the Docker storage driver from vfs to overlay for performance reasons.
- Docker (obviously)
To build up this image:
docker build -t ndslabs/dind .
To run an isolated Docker instance:
docker run -it --privileged ndslabs/dind
Pull an image:
docker pull
Run a container from an image:
docker run -it --rm
Build the image from within a container running that image:
git clone https://github.com/nds-org/ndslabs-dind
cd ndslabs-dind/
docker build -t ndslabs/dind .
In a word: "Woah..."