18 lines
257 B
Makefile
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
|