Files
poprhythm 8871c8354b audiobookshelf: switch audiobooks mount from Docker NFS volume to systemd automount bind mount
NFS named volumes go ESTALE when unRAID drives spin down and Docker cannot recover.
systemd automount handles NFS reconnection transparently; Docker just sees a bind mount.
2026-05-05 20:27:13 +00:00

24 lines
592 B
YAML

networks:
default:
external:
name: npm-network
services:
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:latest
container_name: audiobookshelf
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- VIRTUAL_HOST=audiobookshelf.kolpacksoftware.com
- VIRTUAL_PORT=80
- LETSENCRYPT_HOST=audiobookshelf.kolpacksoftware.com
volumes:
- /srv/audiobookshelf/config:/config
- /srv/audiobookshelf/metadata:/metadata
- /mnt/nas_audiobooks:/audiobooks
ports:
- 13378:80
restart: unless-stopped