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.
28 lines
783 B
28 lines
783 B
2 years ago
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
app_proxy:
|
||
|
environment:
|
||
|
APP_HOST: audiobookshelf_web_1
|
||
|
APP_PORT: 80
|
||
|
|
||
|
web:
|
||
|
image: ghcr.io/advplyr/audiobookshelf:2.2.8@sha256:7b47d1b679bf0a884636fad7900390ee9880345b9377057f052f9066a4987d85
|
||
|
user: 1000:1000
|
||
|
init: true
|
||
|
restart: on-failure
|
||
|
stop_grace_period: 1m
|
||
|
healthcheck:
|
||
|
disable: true
|
||
|
environment:
|
||
|
- CONFIG_PATH=/home/node/config
|
||
|
- METADATA_PATH=/home/node/metadata
|
||
|
- AUDIOBOOKSHELF_UID=1000
|
||
|
- AUDIOBOOKSHELF_GID=1000
|
||
|
volumes:
|
||
|
- ${APP_DATA_DIR}/data/config:/home/node/config
|
||
|
- ${APP_DATA_DIR}/data/metadata:/home/node/metadata
|
||
|
- ${UMBREL_ROOT}/data/storage/downloads/audiobooks:/audiobooks
|
||
|
- ${UMBREL_ROOT}/data/storage/downloads/podcasts:/podcasts
|
||
|
|