aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2203d0c40bdf659903f95c6229b8ff4772e14962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.PHONY: all clean docker-build run

all: build

build:
	kodev build

clean:
	kodev clean
	docker rm -f clog
	docker rm -f clog-postgres
	docker rmi -f clog:latest

docker-build:
	DOCKER_BUILDKIT=1 docker build -t clog .

docker-run:
	docker rm -f clog
	docker run --name clog  -p 8888:8888 -d clog:latest

run:
	kodev run