Skip to content

Instantly share code, notes, and snippets.

View jonathan-moss's full-sized avatar

Jon Moss jonathan-moss

  • Army of Geeks
  • London
View GitHub Profile
@jonathan-moss
jonathan-moss / run.tpl
Created June 12, 2023 13:12 — 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}}