mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
19 lines
377 B
YAML
19 lines
377 B
YAML
variables:
|
|
main_domain: ${domain}
|
|
db_password: ${password}
|
|
db_username: "invoiceshelf"
|
|
db_database: "invoiceshelf"
|
|
|
|
config:
|
|
domains:
|
|
- serviceName: invoiceshelf-app
|
|
port: 80
|
|
host: ${main_domain}
|
|
|
|
env:
|
|
INVOICESHELF_HOST: ${main_domain}
|
|
DB_PASSWORD: ${db_password}
|
|
DB_USERNAME: ${db_username}
|
|
DB_DATABASE: ${db_database}
|
|
|
|
mounts: [] |