mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for Bookstack service, including environment variables and volume configuration. - Added logo for Bookstack. - Created template.toml for Bookstack with default variables for configuration.
15 lines
279 B
TOML
15 lines
279 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
db_password = "${password:16}"
|
|
app_key = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "bookstack"
|
|
port = 80
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
DOMAIN = "${main_domain}"
|
|
DB_PASSWORD = "${db_password}"
|
|
APP_KEY = "${app_key}" |