### Install Recyclarr using Docker Compose Source: https://recyclarr.dev/wiki/index This snippet shows how to set up Recyclarr using Docker Compose. It defines the service, image, container name, user, volume for configuration, and timezone. Ensure the './config' directory exists for storing configuration files. ```yaml services: recyclarr: image: ghcr.io/recyclarr/recyclarr container_name: recyclarr user: 1000:1000 volumes: - ./config:/config environment: TZ: America/Santiago ``` -------------------------------- ### Install Recyclarr using Homebrew Source: https://recyclarr.dev/wiki/index Instructions for installing Recyclarr on macOS and Linux using Homebrew. This involves tapping the official repository and then installing the package. To upgrade, run 'brew update' followed by 'brew upgrade recyclarr'. ```bash brew tap recyclarr/recyclarr brew install recyclarr ``` -------------------------------- ### Run Recyclarr Sync (Native) Source: https://recyclarr.dev/wiki/index Command to manually trigger a sync operation for Recyclarr when running natively. This performs an immediate synchronization of settings based on the current configuration. ```bash recyclarr sync ``` -------------------------------- ### Create Recyclarr Configuration (Native) Source: https://recyclarr.dev/wiki/index Command to create the initial Recyclarr configuration file when running natively. This command generates a 'recyclarr.yml' file in the application data directory. ```bash recyclarr config create ``` -------------------------------- ### Start Recyclarr in Cron Mode (Docker) Source: https://recyclarr.dev/wiki/index Command to start Recyclarr in detached mode using Docker Compose, enabling automatic daily syncs. This command should be used after the configuration is set up and the service is defined in 'docker-compose.yml'. ```bash docker compose up -d ``` -------------------------------- ### Run Recyclarr Sync (Docker) Source: https://recyclarr.dev/wiki/index Command to manually trigger a sync operation for Recyclarr when running via Docker Compose. This executes the sync command within the container, applying configurations to Sonarr/Radarr. ```bash docker compose run --rm recyclarr sync ``` -------------------------------- ### Create Recyclarr Configuration (Docker) Source: https://recyclarr.dev/wiki/index Command to create the initial Recyclarr configuration file when running via Docker Compose. This ensures the configuration is generated within the containerized environment and accessible via the mapped volume. ```bash docker compose run --rm recyclarr config create ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.