docker/haproxy/Makefile

14 lines
207 B
Makefile
Raw Normal View History

2021-01-09 18:06:20 +00:00
VERSION=2.3.1
IMAGE=haproxy
REGISTRY=registry.0xace.cc
.PHONY: build push all
build:
docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
all: build push