You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can I offer this as an updated docker compose example for the instructions page - tested as working with Dockge (needs RUN_PERIODIC_RESCANS structured on a single line and uses - & = environment variable syntax:
For anyone: Please share working docker-compose examples
There are different dialects for yaml. Please feel free to add more examples of docker composes that work for you to this thread that may help others.
Please do not use it to ask questions about docker-composes (create own issues if you don't find the answer to your specific problem in this thread or other closed issues)
Can I offer this as an updated docker compose example for the instructions page - tested as working with Dockge (needs RUN_PERIODIC_RESCANS structured on a single line and uses - & = environment variable syntax:
version: "3.8"
services:
decluttarr:
container_name: decluttarr
image: ghcr.io/manimatter/decluttarr:latest
restart: always
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/London
- SSL_VERIFICATION=True
- LOG_LEVEL=INFO
- REMOVE_TIMER=10
- REMOVE_FAILED=True
- REMOVE_FAILED_IMPORTS=True
- REMOVE_METADATA_MISSING=True
- REMOVE_MISSING_FILES=True
- REMOVE_ORPHANS=True
- REMOVE_SLOW=True
- REMOVE_STALLED=True
- REMOVE_UNMONITORED=True
- PERMITTED_ATTEMPTS=3
- NO_STALLED_REMOVAL_QBIT_TAG=Protected
- MIN_DOWNLOAD_SPEED=50
- RUN_PERIODIC_RESCANS={"SONARR":{"MISSING":true,"CUTOFF_UNMET":true,"MAX_CONCURRENT_SCANS":10,"MIN_DAYS_BEFORE_RESCAN":7},"RADARR":{"MISSING":true,"CUTOFF_UNMET":true,"MAX_CONCURRENT_SCANS":10,"MIN_DAYS_BEFORE_RESCAN":7}}
- FAILED_IMPORT_MESSAGE_PATTERNS=["Not a Custom Format upgrade for
existing", "Not an upgrade for existing"]
- RADARR_URL=http(s)://:
- RADARR_KEY=
- SONARR_URL=http(s)://:
- SONARR_KEY=
- QBITTORRENT_URL=http(s)://:
- QBITTORRENT_USERNAME=
- QBITTORRENT_PASSWORD=
The text was updated successfully, but these errors were encountered: