24 lines
628 B
YAML
24 lines
628 B
YAML
version: "3.7"
|
|
services:
|
|
audiobookshelf:
|
|
image: ghcr.io/advplyr/audiobookshelf:latest
|
|
ports:
|
|
- 13378:80
|
|
volumes:
|
|
- cifs_audiobooks:/audiobooks
|
|
- cifs_podcasts:/podcasts
|
|
- /root/audiobookshelf/config:/config
|
|
- /root/audiobookshelf/metadata:/metadata
|
|
restart: always
|
|
volumes:
|
|
cifs_audiobooks:
|
|
driver_opts:
|
|
type: cifs
|
|
o: username=nasuser,password=nasuser,uid=0,noperm
|
|
device: //192.168.0.69/Media/Audiobooks
|
|
cifs_podcasts:
|
|
driver_opts:
|
|
type: cifs
|
|
o: username=nasuser,password=nasuser,uid=0,noperm
|
|
device: //192.168.0.69/Media/Podcasts
|