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
- Host: GitHub
- URL: https://github.com/acaranta/dind-compose
- Owner: acaranta
- Created: 2020-12-19T09:22:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-17T09:33:53.000Z (over 1 year ago)
- Last Synced: 2025-01-17T09:39:47.818Z (over 1 year ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```