27 lines
798 B
YAML
27 lines
798 B
YAML
# Volumes listed below connect volumes to
|
|
# network storage. These can be altered to
|
|
# your setup, or changed to local folders.
|
|
|
|
version: "3.7"
|
|
services:
|
|
audiobookshelf:
|
|
restart: unless-stopped
|
|
image: ghcr.io/advplyr/audiobookshelf:latest
|
|
ports:
|
|
- 13378:80
|
|
volumes:
|
|
- nas-audiobooks:/audiobooks
|
|
- nas-podcasts:/podcasts
|
|
- C:\Docker\Audiobookshelf\config:/config
|
|
- C:\Docker\Audiobookshelf\metadata:/metadata
|
|
volumes:
|
|
nas-audiobooks:
|
|
driver_opts:
|
|
type: cifs
|
|
o: "username=USER,password=PASSWORD" #change
|
|
device: "//ip-address/share/folder/Audiobooks" #change
|
|
nas-podcasts:
|
|
driver_opts:
|
|
type: cifs
|
|
o: "username=USER,password=PASSWORD" #change
|
|
device: "//ip-address/share/folder/Music/Podcasts" #change |