Skip to content

Instantly share code, notes, and snippets.

View cpeel's full-sized avatar

Casey Peel cpeel

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}}
@gokulkrishh
gokulkrishh / media-query.css
Last active December 9, 2025 18:37
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */