Skip to content

Instantly share code, notes, and snippets.

@damonkelley
Created February 6, 2018 16:42
Show Gist options
  • Save damonkelley/7b0f1772c5de519e95fa210e095c17cc to your computer and use it in GitHub Desktop.
Save damonkelley/7b0f1772c5de519e95fa210e095c17cc to your computer and use it in GitHub Desktop.
Docker Compose in dind
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