docker-compose 模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
450 B

version: "2.1"
services:
booksonic:
image: ghcr.io/linuxserver/booksonic
container_name: booksonic
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- CONTEXT_PATH=url-base
volumes:
- </path/to/appdata/config>:/config
- </path/to/audiobooks>:/audiobooks
- </path/to/podcasts>:/podcasts
- </path/to/othermedia>:/othermedia
ports:
- 4040:4040
restart: unless-stopped