remove github

This commit is contained in:
Jamie Albert
2025-11-02 21:18:46 +00:00
parent 2e2c1a77f7
commit 5bc91f8354
3 changed files with 3 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ edit_file() {
upload_compose() {
upload_file
ssh -q "${REMOTE_HOST}" \
"cd '$(dirname "$REMOTE_PATH")' && exec docker compose up -d" \
"cd '$(dirname "$REMOTE_PATH")' && exec docker compose up -d --remove-orphans" \
|| error 8 'Remote docker compose up failed'
info 'Remote docker compose up -d completed'
}
@@ -90,7 +90,7 @@ upload_restart() {
|| error 9 'Remote docker compose down failed'
upload_file
ssh -q "${REMOTE_HOST}" \
"cd '$(dirname "$REMOTE_PATH")' && exec docker compose up -d" \
"cd '$(dirname "$REMOTE_PATH")' && exec docker compose up -d --remove-orphans" \
|| error 11 'Remote docker compose up failed during restart'
info 'Remote docker compose restart completed'
}