added audiobookshelf

This commit is contained in:
Peter Wood
2024-12-28 01:58:56 +00:00
parent fb08c89e8d
commit b9bdcd5111

View File

@@ -23,7 +23,7 @@ services:
- SERVER_COUNTRIES=United States - SERVER_COUNTRIES=United States
# - SERVER_CITIES=Stockholm # - SERVER_CITIES=Stockholm
# - SERVER_HOSTNAMES: Comma separated list of server hostnames # - SERVER_HOSTNAMES: Comma separated list of server hostnames
restart: unless-stopped restart: always
sabnzbd: sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest image: lscr.io/linuxserver/sabnzbd:latest
container_name: sabnzbd container_name: sabnzbd
@@ -38,7 +38,7 @@ services:
- /data/usenet/incomplete-downloads:/incomplete-downloads - /data/usenet/incomplete-downloads:/incomplete-downloads
# network_mode: "service:gluetun" forces sabnzbd to connect to the internet through the VPN defined in the gluetun container above # network_mode: "service:gluetun" forces sabnzbd to connect to the internet through the VPN defined in the gluetun container above
network_mode: service:gluetun network_mode: service:gluetun
restart: unless-stopped restart: always
sonarr: sonarr:
image: lscr.io/linuxserver/sonarr:latest image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr container_name: sonarr
@@ -57,7 +57,7 @@ services:
- 8989:8989 - 8989:8989
networks: networks:
- cloudflare_default - cloudflare_default
restart: unless-stopped restart: always
radarr: radarr:
image: lscr.io/linuxserver/radarr:latest image: lscr.io/linuxserver/radarr:latest
container_name: radarr container_name: radarr
@@ -76,7 +76,7 @@ services:
- 7878:7878 - 7878:7878
networks: networks:
- cloudflare_default - cloudflare_default
restart: unless-stopped restart: always
prowlarr: prowlarr:
image: lscr.io/linuxserver/prowlarr:latest image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr container_name: prowlarr
@@ -90,7 +90,7 @@ services:
- 9696:9696 - 9696:9696
networks: networks:
- cloudflare_default - cloudflare_default
restart: unless-stopped restart: always
tautulli: tautulli:
image: lscr.io/linuxserver/tautulli:latest image: lscr.io/linuxserver/tautulli:latest
container_name: tautulli container_name: tautulli
@@ -104,11 +104,26 @@ services:
- 8181:8181 - 8181:8181
networks: networks:
- cloudflare_default - cloudflare_default
restart: unless-stopped restart: always
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:latest
container_name: audiobookshelf
ports:
- 13378:80
volumes:
- /mnt/share/media/audiobooks:/audiobooks
- /mnt/share/media/books:/books
- /mnt/share/media/podcasts:/podcasts
- /docker/config/audiobookshelf:/config
- ./audiobookshelf/metadata:/metadata
environment:
- TZ=America/New_York
volumes: volumes:
gluetun_data: null gluetun_data: null
sabnzbd_data: null sabnzbd_data: null
tautulli: null tautulli: null
networks: networks:
cloudflare_default: cloudflare_default:
external: true external: true