Bxl-swarm mediaserver
This commit is contained in:
parent
779ce8cd06
commit
b6a943d530
|
@ -11,6 +11,7 @@ services:
|
||||||
- TZ=Europe/Paris
|
- TZ=Europe/Paris
|
||||||
networks:
|
networks:
|
||||||
- external
|
- external
|
||||||
|
- internal
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 1
|
replicas: 1
|
||||||
|
@ -27,6 +28,182 @@ services:
|
||||||
- "traefik.http.routers.jellyfin.tls=true"
|
- "traefik.http.routers.jellyfin.tls=true"
|
||||||
- "traefik.http.routers.jellyfin.tls.certresolver=http"
|
- "traefik.http.routers.jellyfin.tls.certresolver=http"
|
||||||
|
|
||||||
|
radarr:
|
||||||
|
image: lscr.io/linuxserver/radarr:latest
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
volumes:
|
||||||
|
- /mnt/nfs/radarr:/config
|
||||||
|
- /mnt/movies/movies:/movies
|
||||||
|
- /mnt/movies/tmp:/downloads
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: 1
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
max_attempts: 3
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.radarr.rule=Host(`radarr.bhasher.com`)"
|
||||||
|
- "traefik.http.services.radarr.loadbalancer.server.port=7878"
|
||||||
|
- "traefik.http.routers.radarr.tls=true"
|
||||||
|
- "traefik.http.routers.radarr.tls.certresolver=http"
|
||||||
|
- "traefik.http.routers.radarr.entrypoints=internalsecure"
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
- external
|
||||||
|
|
||||||
|
sonarr:
|
||||||
|
image: lscr.io/linuxserver/sonarr:latest
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
volumes:
|
||||||
|
- /mnt/nfs/sonarr:/config
|
||||||
|
- /mnt/movies/series:/tv
|
||||||
|
- /mnt/movies/tmp:/downloads
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: 1
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
max_attempts: 3
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.sonarr.rule=Host(`sonarr.bhasher.com`)"
|
||||||
|
- "traefik.http.services.sonarr.loadbalancer.server.port=8989"
|
||||||
|
- "traefik.http.routers.sonarr.tls=true"
|
||||||
|
- "traefik.http.routers.sonarr.tls.certresolver=http"
|
||||||
|
- "traefik.http.routers.sonarr.entrypoints=internalsecure"
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
- external
|
||||||
|
|
||||||
|
lidarr:
|
||||||
|
image: lscr.io/linuxserver/lidarr:latest
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
volumes:
|
||||||
|
- /mnt/nfs/lidarr:/config
|
||||||
|
- /mnt/movies/musics:/music
|
||||||
|
- /mnt/movies/tmp:/downloads
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: 1
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
max_attempts: 3
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.lidarr.rule=Host(`lidarr.bhasher.com`)"
|
||||||
|
- "traefik.http.services.lidarr.loadbalancer.server.port=8686"
|
||||||
|
- "traefik.http.routers.lidarr.tls=true"
|
||||||
|
- "traefik.http.routers.lidarr.tls.certresolver=http"
|
||||||
|
- "traefik.http.routers.lidarr.entrypoints=internalsecure"
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
- external
|
||||||
|
|
||||||
|
transmission:
|
||||||
|
image: lscr.io/linuxserver/transmission:latest
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
- USER=transmission
|
||||||
|
- PASS=wo5ciQCMrQTOjx21d3jefyoN
|
||||||
|
volumes:
|
||||||
|
- /mnt/nfs/transmission:/config
|
||||||
|
- /mnt/movies/tmp:/downloads
|
||||||
|
- /mnt/movies/torrents:/watch
|
||||||
|
ports:
|
||||||
|
- 51413:51413/tcp
|
||||||
|
- 51413:51413/udp
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: 1
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
max_attempts: 3
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.transmission.rule=Host(`transmission.bhasher.com`)"
|
||||||
|
- "traefik.http.services.transmission.loadbalancer.server.port=9091"
|
||||||
|
- "traefik.http.routers.transmission.tls=true"
|
||||||
|
- "traefik.http.routers.transmission.tls.certresolver=http"
|
||||||
|
- "traefik.http.routers.transmission.entrypoints=internalsecure"
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
- external
|
||||||
|
|
||||||
|
jackett:
|
||||||
|
image: lscr.io/linuxserver/jackett:latest
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
- AUTO_UPDATE=true
|
||||||
|
volumes:
|
||||||
|
- /mnt/nfs/jackett:/config
|
||||||
|
- /mnt/movies/torrents:/downloads
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: 1
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
max_attempts: 3
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.jackett.rule=Host(`jackett.bhasher.com`)"
|
||||||
|
- "traefik.http.services.jackett.loadbalancer.server.port=9117"
|
||||||
|
- "traefik.http.routers.jackett.tls=true"
|
||||||
|
- "traefik.http.routers.jackett.tls.certresolver=http"
|
||||||
|
- "traefik.http.routers.jackett.entrypoints=internalsecure"
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
- external
|
||||||
|
|
||||||
|
flaresolverr:
|
||||||
|
image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||||
|
environment:
|
||||||
|
- LOG_LEVEL=info
|
||||||
|
- LOG_HTML=false
|
||||||
|
- CAPTCHA_SOLVER=none
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
|
||||||
|
bazarr:
|
||||||
|
image: lscr.io/linuxserver/bazarr:latest
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
volumes:
|
||||||
|
- /mnt/nfs/bazarr:/config
|
||||||
|
- /mnt/movies/movies:/movies
|
||||||
|
- /mnt/movies/series:/tv
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: 1
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
max_attempts: 3
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.bazarr.rule=Host(`bazarr.bhasher.com`)"
|
||||||
|
- "traefik.http.services.bazarr.loadbalancer.server.port=6767"
|
||||||
|
- "traefik.http.routers.bazarr.tls=true"
|
||||||
|
- "traefik.http.routers.bazarr.tls.certresolver=http"
|
||||||
|
- "traefik.http.routers.bazarr.entrypoints=internalsecure"
|
||||||
|
networks:
|
||||||
|
- external
|
||||||
|
- internal
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
|
internal:
|
||||||
external:
|
external:
|
||||||
external: true
|
external: true
|
||||||
|
|
Loading…
Reference in New Issue