--- services: sonarr: image: lscr.io/linuxserver/sonarr:latest container_name: sonarr environment: - PUID=1000 - PGID=1002 - TZ=America/Sao_Paulo volumes: - ./sonarr:/config - /mnt/Public/data:/data ports: - "8989:8989" restart: unless-stopped radarr: image: lscr.io/linuxserver/radarr:latest container_name: radarr environment: - PUID=1000 - PGID=1002 - TZ=America/Sao_Paulo volumes: - ./radarr:/config - /mnt/Public/data:/data ports: - "7878:7878" restart: unless-stopped lazylibrarian: image: lscr.io/linuxserver/lazylibrarian:latest container_name: lazylibrarian environment: - PUID=1000 - PGID=1002 - TZ=America/Sao_Paulo # - DOCKER_MODS=linuxserver/mods:universal-calibre|linuxserver/mods:lazylibrarian-ffmpeg #optional volumes: - ./lazylibrarian:/config - /mnt/Public/data/media/books:/downloads # - /path/to/data/:/books #optional ports: - 5299:5299 restart: unless-stopped # sabnzbd: # image: lscr.io/linuxserver/sabnzbd:latest # container_name: sabnzbd # environment: # - PUID=1000 # - PGID=1002 # volumes: # - ./sabnzbd:/config # - /mnt/hdd_1tb/data/downloads:/downloads #optional # - /path/to/incomplete/downloads:/incomplete-downloads #optional # ports: # - 8383:8080 # restart: unless-stopped # lidarr: # image: lscr.io/linuxserver/lidarr:latest # container_name: lidarr # environment: # - PUID=1000 # - PGID=1000 # - TZ=America/Sao_Paulo # volumes: # - ./lidarr:/config # - /mnt/hdd_1tb/data:/data # ports: # - "8686:8686" # restart: unless-stopped slskd: image: slskd/slskd container_name: slskd ports: - "5030:5030" - "5031:5031" - "50300:50300" environment: - SLSKD_REMOTE_CONFIGURATION=true - SLSKD_SLSK_USERNAME=ticonouvido - SLSKD_SLSK_PASSWORD=asdf1234 volumes: - ./slskd:/app - /mnt/Public/data/media/music:/music restart: unless-stopped # soularr: # restart: unless-stopped # container_name: soularr # hostname: soularr # environment: # - PUID=1000 # - PGID=1000 # - TZ=America/Sao_Paulo #Script interval in seconds # - SCRIPT_INTERVAL=300 # user: "1000:1000" # volumes: #"You can set /downloads to whatever you want but will then need to change the Slskd download dir in your config file" # - /mnt/hdd_1tb/data/downloads:/downloads #Select where you are storing your config file. #Leave "/data" since thats where the script expects the config file to be # - ./soularr:/data # image: mrusse08/soularr:latest prowlarr: image: lscr.io/linuxserver/prowlarr:develop container_name: prowlarr environment: - PUID=1000 - PGID=1002 - TZ=America/Sao_Paulo volumes: - ./prowlarr:/config ports: - "9696:9696" restart: unless-stopped bazarr: image: lscr.io/linuxserver/bazarr:latest container_name: bazarr environment: - PUID=1000 - PGID=1002 - TZ=America/Sao_Paulo volumes: - ./bazarr:/config - /mnt/Public/data/media/movies:/movies - /mnt/Public/data/media/tv:/tv ports: - "6767:6767" restart: unless-stopped jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr environment: - LOG_LEVEL=info - TZ=America/Sao_Paulo ports: - 5055:5055 volumes: - ./jellyseer:/app/config restart: unless-stopped networks: - pangolin flaresolverr: # DockerHub mirror flaresolverr/flaresolverr:latest image: ghcr.io/flaresolverr/flaresolverr:latest container_name: flaresolverr environment: - LOG_LEVEL=${LOG_LEVEL:-info} - LOG_HTML=${LOG_HTML:-false} - CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none} - TZ=America/Sao_Paulo ports: - "${PORT:-8191}:8191" restart: unless-stopped jackett: image: lscr.io/linuxserver/jackett:latest container_name: jackett environment: - PUID=1000 - PGID=1002 - TZ=America/Sao_Paulo - AUTO_UPDATE=true #optional - RUN_OPTS= #optional volumes: - ./jackett:/config - ./blackhole:/downloads ports: - 9117:9117 restart: unless-stopped # unpackerr: # image: golift/unpackerr # container_name: unpackerr # volumes: # You need at least this one volume mapped so Unpackerr can find your files to extract. # Make sure this matches your Starr apps; the folder mount (/downloads or /data) should be identical. # - /mnt/Public/data:/data # restart: unless-stopped # Get the user:group correct so unpackerr can read and write to your files. #user: ${PUID}:${PGID} # user: 1000:1000 # What you see below are defaults for this compose. You only need to modify things specific to your environment. # Remove apps and feature configs you do not use or need. # ie. Remove all lines that begin with UN_CMDHOOK, UN_WEBHOOK, UN_FOLDER, UN_WEBSERVER, and other apps you do not use. # environment: # - TZ=${TZ} # General config # - UN_DEBUG=false # - UN_LOG_FILE= # - UN_LOG_FILES=10 # - UN_LOG_FILE_MB=10 # - UN_INTERVAL=2m # - UN_START_DELAY=1m # - UN_RETRY_DELAY=5m # - UN_MAX_RETRIES=3 # - UN_PARALLEL=1 # - UN_FILE_MODE=0644 # - UN_DIR_MODE=0755 # # Sonarr Config # - UN_SONARR_0_URL=http://192.168.1.201:8989 # - UN_SONARR_0_API_KEY=2c3dff8fe1424040b7ec10c12f074e33 # - UN_SONARR_0_PATHS_0=/data # - UN_SONARR_0_PROTOCOLS=torrent # - UN_SONARR_0_TIMEOUT=10s # - UN_SONARR_0_DELETE_ORIG=false # - UN_SONARR_0_DELETE_DELAY=-1m # # Radarr Config # - UN_RADARR_0_URL=http://192.168.1.201:7878 # - UN_RADARR_0_API_KEY=0ed5600b7e474a9bbf6f948a369c4358 # - UN_RADARR_0_PATHS_0=/data # - UN_RADARR_0_PROTOCOLS=torrent # - UN_RADARR_0_TIMEOUT=10s # - UN_RADARR_0_DELETE_ORIG=false # - UN_RADARR_0_DELETE_DELAY=-1m # # Lidarr Config # - UN_LIDARR_0_URL=http://192.168.1.201:8686 # - UN_LIDARR_0_API_KEY=988083230beb45138cc90ec5aa30339c # - UN_LIDARR_0_PATHS_0=/data # - UN_LIDARR_0_PROTOCOLS=torrent # - UN_LIDARR_0_TIMEOUT=10s # - UN_LIDARR_0_DELETE_ORIG=false # - UN_LIDARR_0_DELETE_DELAY=-1m # # Folder Config # - UN_FOLDER_0_PATH= # - UN_FOLDER_0_EXTRACT_PATH= # - UN_FOLDER_0_DELETE_AFTER=10m # - UN_FOLDER_0_DELETE_ORIGINAL=false # - UN_FOLDER_0_DELETE_FILES=false # - UN_FOLDER_0_MOVE_BACK=false # # Webhook Config # - UN_WEBHOOK_0_URL=https://discord.com/api/webhooks/1242850370506457099/1J4Hv_sxNcc_r6PaB7Wm5EBd7xqBqWvlxapWSKJafiQjr85xNHrdrLjAx81SyevX9WNu # - UN_WEBHOOK_0_NAME= # - UN_WEBHOOK_0_NICKNAME=Unpackerr # - UN_WEBHOOK_0_CHANNEL= # - UN_WEBHOOK_0_TIMEOUT=10s # - UN_WEBHOOK_0_SILENT=false # - UN_WEBHOOK_0_IGNORE_SSL=false # - UN_WEBHOOK_0_EXCLUDE_0= # - UN_WEBHOOK_0_EVENTS_0=0 # - UN_WEBHOOK_0_TEMPLATE_PATH= # - UN_WEBHOOK_0_TEMPLATE=discord # - UN_WEBHOOK_0_CONTENT_TYPE=application/json # # Command Hook Config # - UN_CMDHOOK_0_COMMAND= # - UN_CMDHOOK_0_NAME= # - UN_CMDHOOK_0_TIMEOUT=10s # - UN_CMDHOOK_0_SILENT=false # - UN_CMDHOOK_0_SHELL=false # - UN_CMDHOOK_0_EXCLUDE_0= # - UN_CMDHOOK_0_EVENTS_0=0 # # Web Server Config # - UN_WEBSERVER_METRICS=false # - UN_WEBSERVER_LISTEN_ADDR=0.0.0.0:5656 # - UN_WEBSERVER_LOG_FILE= # - UN_WEBSERVER_LOG_FILES=10 # - UN_WEBSERVER_LOG_FILE_MB=10 # - UN_WEBSERVER_SSL_CERT_FILE= # - UN_WEBSERVER_SSL_KEY_FILE= # - UN_WEBSERVER_URLBASE=/ # - UN_WEBSERVER_UPSTREAMS= networks: pangolin: external: true name: pangolin