bluffit/container/update.sh

13 lines
263 B
Bash
Raw Permalink Normal View History

2024-10-13 21:16:06 +00:00
#!/bin/bash
DIR="$(cd "$(dirname "$0")" && pwd)"
2024-10-13 21:43:12 +00:00
docker compose down
2024-10-13 21:16:06 +00:00
docker image remove bluffit-app
cd ..
rm -rf "$DIR" &
2024-10-13 21:43:12 +00:00
curl -LO "https://github.com/mavdotjs/bluffit/releases/latest/download/container.zip"
2024-10-13 21:16:06 +00:00
unzip ./container.zip
2024-10-13 21:43:12 +00:00
rm container.zip
2024-10-13 21:16:06 +00:00
cd container