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

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM alpine:latest
RUN \
apk --no-cache upgrade && \
apk --no-cache add rclone tini mariadb-client xz zstd
COPY rootfs /
HEALTHCHECK --interval=2m --timeout=3s \
CMD /app/healthcheck.sh || exit 1
ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]