fix cmd tools

This commit is contained in:
Chad Freeman 2024-10-13 17:43:12 -04:00
parent b069ea9ad0
commit 097a18f362
2 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
docker-compose down docker compose down
rm -rf ./run rm -rf ./run
docker image remove bluffit-app docker image remove bluffit-app
docker-compose up docker compose up

View file

@ -2,11 +2,12 @@
DIR="$(cd "$(dirname "$0")" && pwd)" DIR="$(cd "$(dirname "$0")" && pwd)"
docker-compose down docker compose down
docker image remove bluffit-app docker image remove bluffit-app
cd .. cd ..
rm -rf "$DIR" & rm -rf "$DIR" &
curl -0 "https://github.com/mavdotjs/bluffit/releases/latest/download/container.zip" curl -LO "https://github.com/mavdotjs/bluffit/releases/latest/download/container.zip"
unzip ./container.zip unzip ./container.zip
rm container.zip
cd container cd container