Skip to content

Commit

Permalink
feat(prowlarr): add prowlarr (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorundur authored Jun 13, 2024
1 parent b1dbbc7 commit 11abc5c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,35 @@ services:
- ${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

# Plex - https://hotio.dev/containers/plex/
# mkdir -p /volume1/docker/appdata/plex
# Also please read the extra info => https://trash-guides.info/Hardlinks/How-to-setup-for/Synology/#appdata
Expand Down

0 comments on commit 11abc5c

Please sign in to comment.