Skip to content

Instantly share code, notes, and snippets.

@shameekagarwal
Created June 30, 2022 06:11
Show Gist options
  • Save shameekagarwal/f1686cffac86159b5259142f3044f731 to your computer and use it in GitHub Desktop.
Save shameekagarwal/f1686cffac86159b5259142f3044f731 to your computer and use it in GitHub Desktop.
Volume Example - Docker
apiVersion: v1
kind: Pod
metadata:
name: docker
spec:
containers:
- name: docker
image: docker:17.11
command:
- sleep
- "1000000"
volumeMounts:
- mountPath: /var/run/docker.sock
name: docker-socket
volumes:
- name: docker-socket
hostPath:
path: /var/run/docker.sock
type: Socket
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment