Skip to content

Instantly share code, notes, and snippets.

@harkabeeparolus
harkabeeparolus / Typer_cheat_sheet.md
Last active February 11, 2026 01:17
Typer — my attempt at reference documentation
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active March 17, 2026 14:26
Conventional Commits Cheatsheet
@swarupdonepudi
swarupdonepudi / docker-run-user.md
Last active March 15, 2026 16:21
Run docker as the same user as on the host machine

By default docker runs the container as root user unless specified otherwise. In order to force docker to run the container as the same user as the docker daemon add --user flag as show below to docker run command.

docker run --user "$(id -u):$(id -g)"