I've been trying to get ImageMaid running on docker on Ubuntu 24.04 LTS. If I use the url of "plex:32400" I get an error: No connection adapters were found for '(redacted)/' and if I use "http://plex:32400" I get "Metadata Error: File Error: Database File Could not Downloaded"
Compose:
imagemaid:
image: meisnate12/plex-image-cleanup:latest
container_name: imagemaid
restart: unless-stopped
profiles: ["all", "plex", "rick"]
networks:
- ${APP_NETWORK}
user: ${PUID}:${PGID}
volumes:
- ${APPDATA}/plex/imagemaid:/config
- ${APPDATA}/plex/data/Library/Application Support/Plex Media Server:/plex
environment:
TZ: ${TZ}
PLEX_PATH: /plex
MODE: report
#SCHEDULE: "07:00|daily"
PLEX_URL: plex:32400
PLEX_TOKEN: ${PLEX_TOKEN}
TIMEOUT: 600
SLEEP: 60
LOCAL_DB: False
PHOTO_TRANSCODER: False
EMPTY_TRASH: False
CLEAN_BUNDLES: False
OPTIMIZE_DB: False
TRACE: True
Thank you.