1
0
mirror of https://github.com/rancher/steve.git synced 2025-09-01 15:37:31 +00:00
Files
steve/Makefile

9 lines
338 B
Makefile
Raw Normal View History

2019-08-04 21:19:18 -07:00
build:
2019-09-11 14:05:00 -07:00
docker build -t steve .
2019-08-04 21:19:18 -07:00
run: build
2020-05-30 21:44:51 -07:00
docker run $(DOCKER_ARGS) --rm -p 8989:9080 -it -v ${HOME}/.kube:/root/.kube steve --https-listen-port 0
2019-08-04 21:19:18 -07: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