aboutsummaryrefslogtreecommitdiff
path: root/ddns/Makefile
blob: 116360151adba86430d9dd839c2c16ddb5623218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
IMAGE=docker.crute.me/ddns:latest

all:
	docker build -t $(IMAGE) .

all-no-cache:
	docker build --no-cache -t $(IMAGE) .

run:
	docker run -d \
		-p 9000:9000 \
		$(IMAGE)

publish:
	docker push $(IMAGE)