mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-25 23:28:37 -06:00
build: Added docker-stop make entry
This commit is contained in:
parent
34518affaf
commit
a0f0eb5280
1 changed files with 4 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -13,9 +13,11 @@ build-dev:
|
|||
docker-local: build-dev
|
||||
docker build --tag chhoto-url --build-arg TARGETARCH=amd64 -f Dockerfile.multiarch .
|
||||
|
||||
docker-test: docker-local
|
||||
docker-stop:
|
||||
docker ps -q --filter "name=chhoto-url" | xargs -r docker stop
|
||||
docker ps -aq --filter "name=chhoto-url" | xargs -r docker rm
|
||||
|
||||
docker-test: docker-local docker-stop
|
||||
docker run -p 4567:4567 --name chhoto-url -e password="${PASSWORD}" -d chhoto-url
|
||||
docker logs chhoto-url -f
|
||||
|
||||
|
@ -40,4 +42,4 @@ clean:
|
|||
docker ps -aq --filter "name=chhoto-url" | xargs -r docker rm
|
||||
cargo clean --manifest-path=actix/Cargo.toml
|
||||
|
||||
.PHONY: build-dev docker-local build-release
|
||||
.PHONY: build-dev docker-local docker-stop build-release
|
||||
|
|
Loading…
Reference in a new issue