khuedoan-homelab/tools/Makefile

25 lines
416 B
Makefile

.POSIX:
TAG = homelab-tools
default: check build run
check:
docker info --format '{{ .Plugins.Network }}' | grep 'host'
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" \
--workdir "$(shell pwd)/.." \
${TAG}