3
0
mirror of https://kolaente.dev/konrad/docker-db-backup.git synced 2026-01-10 02:50:08 +01:00

fix: don't stop everything when one container could not be backed up

Resolves #3
This commit is contained in:
kolaente
2023-06-15 14:27:29 +02:00
parent bd72e06825
commit 42932f91d2
2 changed files with 5 additions and 9 deletions

View File

@@ -27,10 +27,7 @@ func main() {
log.Fatalf("Could not clean old backups: %s", err)
}
err = dumpAllDatabases(c)
if err != nil {
log.Fatalf("Could not dump databases: %s", err)
}
dumpAllDatabases(c)
err = callWebhook()
if err != nil {