1
0
mirror of https://github.com/rancher/steve.git synced 2025-08-01 23:03:28 +00:00
steve/Makefile

9 lines
290 B
Makefile
Raw Normal View History

2019-08-05 04:19:18 +00:00
build:
docker build -t naok .
run: build
2019-08-08 05:42:42 +00:00
docker run $(DOCKER_ARGS) --rm -p 8989:8080 -it -v ${HOME}/.kube:/root/.kube naok
2019-08-05 04:19:18 +00:00
run-host: build
2019-08-08 05:42:42 +00:00
docker run $(DOCKER_ARGS) --net=host --uts=host --rm -it -v ${HOME}/.kube:/root/.kube naok --kubeconfig /root/.kube/config --listen-address :8989