aboutsummaryrefslogtreecommitdiff
path: root/cert-manage/Makefile
blob: f40df653331612e824cab4b63c057161f791e013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)