IMAGE=docker.crute.me/cert-manage:latest all: docker pull alpine:latest docker build -t $(IMAGE) . all-no-cache: docker build --no-cache -t $(IMAGE) . run: docker run -d --net=host \ --cap-add=NET_ADMIN \ --name=bird \ -v $PWD/bird:/srv/bird \ $(IMAGE) publish: docker push $(IMAGE)