Created
June 18, 2022 08:40
-
-
Save naxhh/37b7e421a655ae85c34030cd7fb5e42a to your computer and use it in GitHub Desktop.
sonarr & radarr setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
sonarr: | |
image: lscr.io/linuxserver/sonarr | |
container_name: sonarr | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=Europe/Madrid | |
volumes: | |
- /share/CACHEDEV1_DATA/Container/data/sonarrConfig:/config | |
- /share/CACHEDEV1_DATA/Public:/data | |
#ports: | |
# - 8989:8989 | |
restart: unless-stopped | |
network_mode: host | |
radarr: | |
image: lscr.io/linuxserver/radarr | |
container_name: radarr | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=Europe/Madrid | |
volumes: | |
- /share/CACHEDEV1_DATA/Container/data/radarrConfig:/config | |
- /share/CACHEDEV1_DATA/Public:/data | |
#ports: | |
# - 7878:7878 | |
restart: unless-stopped | |
network_mode: host | |
jackett: | |
image: lscr.io/linuxserver/jackett | |
container_name: jackett | |
environment: | |
- PUID=1000 | |
- PGID=100 | |
- TZ=Europe/Madrid | |
- AUTO_UPDATE=true | |
volumes: | |
- /share/CACHEDEV1_DATA/Container/data/jackettConfig:/config | |
- /share/CACHEDEV1_DATA/Download/jackett:/downloads | |
#ports: | |
# - 9117:9117 | |
restart: unless-stopped | |
network_mode: host | |
flaresolverr: | |
image: ghcr.io/flaresolverr/flaresolverr:latest | |
container_name: flaresolverr | |
environment: | |
- LOG_LEVEL=info | |
- LOG_HTML=false | |
- CAPTCHA_SOLVER=none | |
- TZ=Europe/Madrid | |
ports: | |
- 8191:8191 | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment