diff --git a/version-upgrade.sh b/version-upgrade.sh new file mode 100755 index 0000000..7c1bda6 --- /dev/null +++ b/version-upgrade.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +# Get the new version from the command line argument +new_version=$1 + +if [ -z "$new_version" ]; then + echo "Usage: $0 " + exit 1 +fi + +# Bring the stack down +docker compose down + +# Update the APP_VERSION value in .env file +sed -i "s/APP_VERSION=.*$/APP_VERSION=$new_version/" .env + +# Bring the stack back up +docker compose up -d