docker-nagios-4/Makefile

11 lines
186 B
Makefile
Raw Permalink Normal View History

2021-09-30 23:35:14 -07:00
DOCKERIMAGE := dockermirror:5000/dpedu/nagios-4
DOCKEROPTS :=
.PHONY: image
image:
docker build -t $(DOCKERIMAGE) $(DOCKEROPTS) .
.PHONY: push
push: image
docker push $(DOCKERIMAGE)