mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* feat(blueprints): add Flagsmith blueprint * Update blueprints/flagsmith/docker-compose.yml * Update blueprints/flagsmith/docker-compose.yml * Update blueprints/flagsmith/docker-compose.yml * Update blueprints/flagsmith/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
18 lines
351 B
TOML
18 lines
351 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
django_secret_key = "${password:8}"
|
|
database_password = "${password:16}"
|
|
|
|
[config]
|
|
env = [
|
|
"DATABASE_PASSWORD=${database_password}",
|
|
"DJANGO_SECRET_KEY=${django_secret_key}",
|
|
"FLAGSMITH_DOMAIN=${main_domain}",
|
|
]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "flagsmith"
|
|
port = 8_000
|
|
host = "${main_domain}"
|