IMAGE=docker.crute.me/skopeo:latest all: docker pull alpine:edge docker build -t $(IMAGE) . all-no-cache: docker build --no-cache -t $(IMAGE) . run: docker run -d --net=host \ -p 53:53/tcp \ -p 53:53/udp \ -p 953:953 \ -v /home/mcrute/tmp/bind/conf:/etc/bind \ -v /home/mcrute/tmp/bind/cache:/var/cache/bind \ $(IMAGE) publish: docker push $(IMAGE)