mirror of
https://github.com/rancher/steve.git
synced 2025-04-27 11:00:48 +00:00
9 lines
338 B
Makefile
9 lines
338 B
Makefile
build:
|
|
docker build -t steve .
|
|
|
|
run: build
|
|
docker run $(DOCKER_ARGS) --rm -p 8989:9080 -it -v ${HOME}/.kube:/root/.kube steve --https-listen-port 0
|
|
|
|
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
|