Files
templates/blueprints/invoiceshelf/template.toml
Ahmed Ashraf bb97aec8ba Fix invoiceshelf docker image tag (#344)
* switch to image tag from latest to nightly

* Update template.toml

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-09-13 21:59:02 -06:00

20 lines
379 B
TOML

[variables]
main_domain = "${domain}"
db_password = "${password}"
db_username = "invoiceshelf"
db_database = "invoiceshelf"
[config]
mounts = []
[[config.domains]]
serviceName = "invoiceshelf-app"
port = 8080
host = "${main_domain}"
[config.env]
INVOICESHELF_HOST = "${main_domain}"
DB_PASSWORD = "${db_password}"
DB_USERNAME = "${db_username}"
DB_DATABASE = "${db_database}"