mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* Add Evershop template * Update configuration * Update docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
20 lines
332 B
TOML
20 lines
332 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
db_user = "postgres"
|
|
db_password = "postgres"
|
|
db_name = "evershop"
|
|
db_port = "5432"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "evershop-app"
|
|
port = 3_000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
DB_USER = "${db_user}"
|
|
DB_PASSWORD = "${db_password}"
|
|
DB_NAME = "${db_name}"
|
|
DB_PORT = "${db_port}"
|