goldilocks.js/Makefile

18 lines
420 B
Makefile

run: build
docker run --rm --net=host -d --name goldilocks daplie/goldilocks
logs:
docker logs goldilocks -f
build:
docker build . --tag daplie/goldilocks
rebuild:
docker build . --no-cache --tag daplie/goldilocks
shell:
docker exec -ti goldilocks ash
htop:
docker exec -ti goldilocks htop
kill:
docker kill goldilocks || true
clean: kill
docker rm -f goldilocks || true
docker rmi -f daplie/goldilocks || true