Files
unbound/Makefile
T
Michael Elkerton 8fa139e77d init
2026-07-28 18:47:03 -06:00

18 lines
257 B
Makefile

include .env
GIT_URL=git.mspe.ca
image:
docker build -t unbound:build .
up:
docker compose up
tag:
docker tag unbound:build ${GIT_URL}/docker/unbound:${VERSION}
docker image ls
push:
docker push ${GIT_URL}/docker/unbound:${VERSION}
test: image up