Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3.2"
- services:
- # Radarr - https://hotio.dev/containers/radarr/
- # mkdir /volume1/docker/appdata/radarr
- radarr:
- container_name: radarr
- image: lscr.io/linuxserver/radarr:latest
- restart: unless-stopped
- logging:
- driver: json-file
- options:
- max-file: ${DOCKERLOGGING_MAXFILE}
- max-size: ${DOCKERLOGGING_MAXSIZE}
- labels:
- - org.hotio.pullio.update=${PULLIO_UPDATE}
- - org.hotio.pullio.notify=${PULLIO_NOTIFY}
- - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK}
- ports:
- - 7878:7878
- environment:
- - PUID=${PUID}
- - PGID=${PGID}
- - TZ=${TZ}
- - UMASK=002
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - ${DOCKERCONFDIR}/radarr:/config
- - ${DOCKERSTORAGEDIR}:/data
- - /volume1/docker/appdata/radarr/data-01:/custom-services.d
- - /volume1/docker/appdata/radarr/data-02:/custom-cont-init.d
- # Sonarr - https://hotio.dev/containers/sonarr/
- # mkdir /volume1/docker/appdata/sonarr
- sonarr:
- container_name: sonarr
- image: lscr.io/linuxserver/sonarr:develop
- restart: unless-stopped
- logging:
- driver: json-file
- options:
- max-file: ${DOCKERLOGGING_MAXFILE}
- max-size: ${DOCKERLOGGING_MAXSIZE}
- labels:
- - org.hotio.pullio.update=${PULLIO_UPDATE}
- - org.hotio.pullio.notify=${PULLIO_NOTIFY}
- - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK}
- ports:
- - 8989:8989
- environment:
- - PUID=${PUID}
- - PGID=${PGID}
- - TZ=${TZ}
- - UMASK=002
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - ${DOCKERCONFDIR}/sonarr:/config
- - ${DOCKERSTORAGEDIR}:/data
- - /volume1/docker/appdata/sonarr/data-01:/custom-services.d
- - /volume1/docker/appdata/sonarr/data-02:/custom-cont-init.d
- # Bazarr - https://hotio.dev/containers/bazarr/
- # mkdir /volume1/docker/appdata/bazarr
- bazarr:
- container_name: bazarr
- image: lscr.io/linuxserver/bazarr:development
- restart: unless-stopped
- logging:
- driver: json-file
- options:
- max-file: ${DOCKERLOGGING_MAXFILE}
- max-size: ${DOCKERLOGGING_MAXSIZE}
- labels:
- - org.hotio.pullio.update=${PULLIO_UPDATE}
- - org.hotio.pullio.notify=${PULLIO_NOTIFY}
- - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK}
- ports:
- - 6767:6767
- environment:
- - PUID=${PUID}
- - PGID=${PGID}
- - TZ=${TZ}
- - UMASK=002
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - ${DOCKERCONFDIR}/bazarr:/config
- - ${DOCKERSTORAGEDIR}/media:/data/media
- # Prowlarr - https://hotio.dev/containers/prowlarr/
- #
- # Don't forget to create the directory, change chown command if needed (the user:group part)
- # sudo -u docker mkdir -m=00775 /volume1/docker/appdata/prowlarr
- #
- prowlarr:
- container_name: prowlarr
- image: hotio/prowlarr:testing
- restart: unless-stopped
- logging:
- driver: json-file
- options:
- max-file: ${DOCKERLOGGING_MAXFILE}
- max-size: ${DOCKERLOGGING_MAXSIZE}
- labels:
- - org.hotio.pullio.update=${PULLIO_UPDATE}
- - org.hotio.pullio.notify=${PULLIO_NOTIFY}
- - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK}
- ports:
- - 9696:9696
- environment:
- - PUID=${PUID}
- - PGID=${PGID}
- - TZ=${TZ}
- - UMASK=002
- - ARGS=
- volumes:
- - ${DOCKERCONFDIR}/prowlarr:/config:rw
- # devices: # optional: if you have a Syno with an Intel CPU with quicksync and want hardware transcoding (only with Plex Pass)
- uncomment this line.
- # - /dev/dri:/dev/dri # optional: if you have a Syno with an Intel CPU with quicksync and want hardware transcoding (only with Plex Pass)
- uncomment this line.
- # tmpfs: # optional: if you have a Syno with enough RAM, you can uncomment this line to enable transcoding in RAM. uncomment
- this line.
- # - /transcode # optional: if you have a Syno with enough RAM, you can uncomment this line to enable transcoding in RAM. uncomment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement