Skip to content

Instantly share code, notes, and snippets.

View FeedTheChunk's full-sized avatar

They call me Chunk FeedTheChunk

  • USA
  • 03:35 (UTC -05:00)
View GitHub Profile
@efrecon
efrecon / run.tpl
Last active November 15, 2025 09:12
`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}}