Skip to content

Instantly share code, notes, and snippets.

View snikhil1998's full-sized avatar

Nikhil Sairam Reddy Sannapareddy snikhil1998

View GitHub Profile
@snikhil1998
snikhil1998 / run.tpl
Last active March 7, 2025 17:17 — forked from efrecon/run.tpl
`docker inspect` template to regenerate the `docker run` command that created a container
docker run \
--name {{printf "%q" .Name}} \
{{- with .HostConfig}}
{{- if .Privileged}}
--privileged \
{{- end}}
{{- if .AutoRemove}}
--rm \
{{- end}}
{{- if .Runtime}}