### Run Exportarr with CLI Source: https://github.com/onedr0p/exportarr/blob/main/README.md Execute Exportarr directly from the command line. The --port flag must be unique if multiple instances are run. Replace placeholders with your specific app details. ```sh ./exportarr $app --help # --port must be unique across all Exportarr instances ./exportarr $app \ --port 9707 \ --url "http://x.x.x.x:$port" \ --api-key "$apikey" ``` -------------------------------- ### Run Exportarr with Docker CLI Source: https://github.com/onedr0p/exportarr/blob/main/README.md Deploy Exportarr using Docker CLI. Ensure the PORT is unique for each instance if running multiple exporters. Replace placeholders with your specific app details. ```sh # PORT must be unique across all Exportarr instances docker run --name exportarr_$app \ -e PORT=9707 \ -e URL="http://x.x.x.x:$port" \ -e API_KEY="$apikey" \ --restart unless-stopped \ -p 9707:9707 \ -d ghcr.io/onedr0p/exportarr:latest $app ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.