Skip to content

Instantly share code, notes, and snippets.

@iocanel
Last active August 31, 2015 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iocanel/bed98f7cd6a830c3d152 to your computer and use it in GitHub Desktop.
Save iocanel/bed98f7cd6a830c3d152 to your computer and use it in GitHub Desktop.
Volumes and volume mounts
{
"volumeMounts": [
{
"name": "docker-socket",
"mountPath": "/var/run/docker.sock",
"readOnly": false
}
],
"volumes": [
{
"name": "docker-socket",
"hostPath": {
"path": "/var/run/docker.sock"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment