We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5b0d9 commit ce352ebCopy full SHA for ce352eb
templates/compose/audiobookshelf.yaml
@@ -9,9 +9,15 @@ services:
9
image: ghcr.io/advplyr/audiobookshelf:latest
10
environment:
11
- SERVICE_FQDN_AUDIOBOOKSHELF_80
12
- - TZ=America/Toronto
+ - TZ=${TIMEZONE:-America/Toronto}
13
volumes:
14
- audiobookshelf-audiobooks:/audiobooks
15
- audiobookshelf-podcasts:/podcasts
16
- audiobookshelf-config:/config
17
- audiobookshelf-metadata:/metadata
18
+ healthcheck:
19
+ test: ["CMD-SHELL", "curl -f http://localhost:80/ping || exit 1"]
20
+ interval: 30s
21
+ timeout: 10s
22
+ retries: 3
23
+ start_period: 15s
0 commit comments