An open API service indexing awesome lists of open source software.

https://github.com/acaranta/dind-compose

DockerInDocker image with docker-compose
https://github.com/acaranta/dind-compose

Last synced: 7 months ago
JSON representation

DockerInDocker image with docker-compose

Awesome Lists containing this project

README

          

# DinD (Docker in Docker) with docker-compose

This Docker image provides Docker inside itself, which allows you to run any Docker container.

This image is designed to run everything with Docker, so it doesn't pre-install any execution environment for any specific programming language. Instead, simply run the images you need from the public Docker Hub or your private Docker registry.

This Docker image is based on [killercentury/docker-jenkins-dind](https://github.com/killercentury/docker-jenkins-dind).

Run it with mounted directory from host:

```
docker run -d acaranta/dind-compose
```

You can also use it to access/control your host docker daemon (be CAREFUL tho) :
```
docker run -d -v /var/run/docker.sock:/var/run/docker.sock acaranta/dind-compose
```