Skip to content

Instantly share code, notes, and snippets.

View AGou-ops's full-sized avatar
💭

Sephiroth AGou-ops

💭
View GitHub Profile
@efrecon
efrecon / run.tpl
Last active May 29, 2025 11:26
`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}}
@lukehedger
lukehedger / ffmpeg-compress-mp4
Last active May 28, 2025 22:43
Compress mp4 using FFMPEG
$ ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4