mirror of
https://github.com/rancher/steve.git
synced 2025-04-27 19:05:09 +00:00
14 lines
405 B
Makefile
14 lines
405 B
Makefile
build:
|
|
docker build -t steve .
|
|
|
|
build-bin:
|
|
bash scripts/build-bin.sh
|
|
|
|
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
|
|
|
|
test:
|
|
bash scripts/test.sh
|