Created
February 6, 2018 16:42
-
-
Save damonkelley/7b0f1772c5de519e95fa210e095c17cc to your computer and use it in GitHub Desktop.
Docker Compose in dind
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
compose: | |
image: docker/compose:1.18.0 | |
volumes: | |
- ./:/app | |
command: -H tcp://docker:2375 -f /app/docker-compose.test.yml up | |
links: | |
- dind:docker | |
dind: | |
image: docker:dind | |
privileged: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment