Created
July 27, 2018 18:49
-
-
Save vadym-martsynovskyy-hs/657f6629f3fb3b3f9847501cdb27e2bf to your computer and use it in GitHub Desktop.
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
| containers: | |
| - name: my-main-container | |
| # ... | |
| # other container config here | |
| # ... | |
| env: | |
| - name: DOCKER_HOST | |
| value: tcp://localhost:2375 | |
| - name: dind | |
| image: docker:18.05-dind | |
| securityContext: | |
| privileged: true | |
| volumeMounts: | |
| - name: dind-storage | |
| mountPath: /var/lib/docker | |
| volumes: | |
| - name: dind-storage | |
| emptyDir: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment