gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/g3doc/user_guide/tutorials/docker-in-gke-sandbox/docker.yaml (about) 1 apiVersion: v1 2 kind: Pod 3 metadata: 4 name: docker-in-gvisor 5 spec: 6 runtimeClassName: gvisor 7 containers: 8 - name: docker-in-gvisor 9 image: avagin/docker-in-gvisor:0.1 10 securityContext: 11 capabilities: 12 add: ["all"] 13 volumeMounts: 14 - name: docker 15 mountPath: /var/lib/docker 16 volumes: 17 - name: docker 18 emptyDir: {}