1
0
mirror of https://github.com/rancher/steve.git synced 2025-05-12 18:04:20 +00:00
steve/Makefile

9 lines
338 B
Makefile
Raw Normal View History

2019-08-05 04:19:18 +00:00
build:
2019-09-11 21:05:00 +00:00
docker build -t steve .
2019-08-05 04:19:18 +00:00
run: build
2020-05-31 04:44:51 +00:00
docker run $(DOCKER_ARGS) --rm -p 8989:9080 -it -v ${HOME}/.kube:/root/.kube steve --https-listen-port 0
2019-08-05 04:19:18 +00:00
run-host: build
docker run $(DOCKER_ARGS) --net=host --uts=host --rm -it -v ${HOME}/.kube:/root/.kube steve --kubeconfig /root/.kube/config --http-listen-port 8989 --https-listen-port 0