mirror of
https://github.com/niusmallnan/steve.git
synced 2025-10-21 19:01:31 +00:00
9 lines
224 B
Makefile
9 lines
224 B
Makefile
build:
|
|
docker build -t naok .
|
|
|
|
run: build
|
|
docker run $(DOCKER_ARGS) --rm -p 8989:8989 -it -v ${HOME}/.kube:/root/.kube naok
|
|
|
|
run-host: build
|
|
docker run $(DOCKER_ARGS) --net=host --rm -it -v ${HOME}/.kube:/root/.kube naok
|