mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Audiobookshelf blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Audiobookshelf service, including environment variables and volume configuration. - Added logo for Audiobookshelf. - Created template.toml for Audiobookshelf with default variables for configuration.
This commit is contained in:
parent
c0218e8e2e
commit
82f7e739b4
17
blueprints/audiobookshelf/docker-compose.yml
Normal file
17
blueprints/audiobookshelf/docker-compose.yml
Normal file
@ -0,0 +1,17 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
audiobookshelf:
|
||||
image: ghcr.io/advplyr/audiobookshelf:2.19.4
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 80
|
||||
environment:
|
||||
- TZ=UTC
|
||||
volumes:
|
||||
- config:/config
|
||||
- metadata:/metadata
|
||||
- ${AUDIOBOOKS_PATH}:/audiobooks
|
||||
|
||||
volumes:
|
||||
config: {}
|
||||
metadata: {}
|
BIN
blueprints/audiobookshelf/logo.png
Normal file
BIN
blueprints/audiobookshelf/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
12
blueprints/audiobookshelf/template.toml
Normal file
12
blueprints/audiobookshelf/template.toml
Normal file
@ -0,0 +1,12 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
audiobooks_path = "/path/to/your/audiobooks"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "audiobookshelf"
|
||||
port = 80
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
AUDIOBOOKS_PATH = "${audiobooks_path}"
|
Loading…
Reference in New Issue
Block a user