initial release
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 36s
Container Publish / build-image (amd64) (push) Successful in 55s
Container Publish / update docker manifest (push) Successful in 11s

This commit is contained in:
2025-12-14 21:27:17 +01:00
commit 0253fbebcd
8 changed files with 954 additions and 0 deletions

13
rootfs/app/healthcheck.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
STATUS_FILE=/last_backup_status.txt
if [ ! -f "${STATUS_FILE}" ]; then
exit 0
fi
if [ "$(cat "${STATUS_FILE}")" != "success" ]; then
exit 1
fi
exit 0