khuedoan-homelab/tools/Makefile
Khue Doan c5602bdb8b fix(tools): use same user as host in container
Fix incorrect permission for file created from inside the tools
container
2022-01-16 14:28:45 +07:00

25 lines
506 B
Makefile

.POSIX:
TAG = homelab-tools
default: build run
build:
@docker build . --tag ${TAG}
run:
@docker run \
--rm \
--interactive \
--tty \
--network host \
--env "TERM=${TERM}" \
--env "HOME=${HOME}" \
--volume "${HOME}:${HOME}" \
--volume "/var/run/docker.sock:/var/run/docker.sock" \
--volume "/etc/passwd:/etc/passwd" \
--user "$(shell id -u ${USER}):$(shell id -g ${USER})" \
--group-add "$(shell getent group docker | cut -d ':' -f 3)" \
--workdir "$(shell pwd)/.." \
${TAG}