mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Calibre blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Calibre service, including environment variables and volume configuration. - Added logo for Calibre. - Created template.toml for Calibre with default variables for configuration. - Updated meta.json to include Calibre with detailed description, logo, and relevant links.
This commit is contained in:
20
blueprints/calibre/docker-compose.yml
Normal file
20
blueprints/calibre/docker-compose.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
calibre:
|
||||
image: linuxserver/calibre:7.26.0
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PASSWORD=${PASSWORD}
|
||||
- TZ=Etc/UTC
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
ports:
|
||||
- 8080
|
||||
volumes:
|
||||
- books:/books
|
||||
- data:/config
|
||||
|
||||
volumes:
|
||||
books:
|
||||
data:
|
||||
BIN
blueprints/calibre/logo.png
Normal file
BIN
blueprints/calibre/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
12
blueprints/calibre/template.toml
Normal file
12
blueprints/calibre/template.toml
Normal file
@@ -0,0 +1,12 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
password = "${password:16}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "calibre"
|
||||
port = 8080
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
PASSWORD = "${password}"
|
||||
Reference in New Issue
Block a user