docker-backup-cron (latest)
Published 2026-05-17 21:45:59 -06:00 by w33ble
Installation
docker pull git.w33ble.com/w33ble/docker-backup-cron:latestsha256:72039c6938040f44eb63d04f52a6d09e33469ebc64e301dbe2a902ad61055a66Image layers
| ADD alpine-minirootfs-3.23.3-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| ENV CRON_USER=cronuser |
| ENV CRON_UID=1000 |
| ENV CRON_GID=1000 |
| RUN /bin/sh -c apk add --no-cache sudo tini curl openssl openssh-client bash rsync rclone # buildkit |
| STOPSIGNAL SIGKILL |
| COPY entrypoint.sh /usr/local/bin/entrypoint.sh # buildkit |
| RUN /bin/sh -c chmod +x /usr/local/bin/entrypoint.sh # buildkit |
| ENTRYPOINT ["/sbin/tini" "--" "/usr/local/bin/entrypoint.sh"] |
| CMD ["crond" "-l" "2" "-f"] |