boredazfcuk

Results 154 comments of boredazfcuk

This is usually because the path is mounted to an SMB share or something along those lines. It's possible to configure the docker volume mounts so that it knows they...

These logs: ``` 2024-04-12T19:53:23.138410838Z 2024-04-12 12:53:23 DEBUG /photos/PrimarySync/2024/01-2024/01-14-2024/lp_image-254411.heic deduplicated 2024-04-12T19:53:23.138442354Z 2024-04-12 12:53:23 DEBUG /photos/PrimarySync/2024/01-2024/01-14-2024/lp_image-254411.heic already exists 2024-04-12T19:53:23.138474979Z 2024-04-12 12:53:23 DEBUG /photos/PrimarySync/2024/01-2024/01-14-2024/lp_image_HEVC-609676.MOV deduplicated 2024-04-12T19:53:23.138505979Z 2024-04-12 12:53:23 DEBUG /photos/PrimarySync/2024/01-2024/01-14-2024/lp_image_HEVC-609676.MOV already exists 2024-04-12T19:53:23.140496212Z...

I revisited this and the upstream application fixed their logging issue. Having debug_logging set to false should now hide these.

iCloud Photos downloader: https://github.com/icloud-photos-downloader/icloud_photos_downloader/pull/664

I think I've seen this issue on some notification that popped up... I think it's some sort of security "feature" of the container platform which prevents the containers writing to...

curl exit code 6 is "host not found" The :443 should be unnecessary when using https:// prefix. Try removing that so the configuration in the container is the same as...

You've not created a network for the container. Try that: https://github.com/boredazfcuk/docker-icloudpd/blob/master/CONFIGURATION.md#creating-a-container

I create mine with a single docker-compose.yml like this: ``` version: "3.7" networks: containers: name: containers external: true driver: bridge ipam: driver: default config: - subnet: 192.168.99.0/24 driver_opts: com.docker.network.bridge.name: containers0...

Seems like an older version of Docker, but not old enough that it would cause issue. I'll have used that version with this config at some point. Mine is a...