948b47a9d5
icloudpd+rclone FUSE-mount container backs up 839GB iCloud Photos to a Hetzner bucket; Immich indexes both that bucket and the MinIO photo-site library as read-only external libraries. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
416 B
Docker
13 lines
416 B
Docker
# icloudpd + rclone in one image: FUSE-mount the Hetzner Object Storage bucket
|
|
# and run icloudpd writing straight to it, so icloudpd's "already downloaded?"
|
|
# check sees the bucket contents (no re-download loop, no local-staging ceiling).
|
|
FROM icloudpd/icloudpd:latest
|
|
|
|
USER root
|
|
RUN apk add --no-cache rclone fuse3 fuse
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|