mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-29 03:46:12 -05:00
* Enhance meta.json: add GitLab Community Edition entry with detailed description, logo, and links; format tag lists for consistency. * Refactor docker-compose.yml for GitLab CE: remove unnecessary version declaration, simplify port mappings, and eliminate unused network configurations. * Add Casdoor and Zitadel blueprints: include docker-compose files, template configurations, and metadata entries with descriptions, logos, and links for both identity management platforms.
19 lines
364 B
TOML
19 lines
364 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_db = "gitlab"
|
|
postgres_user = "gitlab"
|
|
postgres_password = "${password:32}"
|
|
|
|
[config]
|
|
env = [
|
|
"GITLAB_HOST=${main_domain}",
|
|
"POSTGRES_DB=${postgres_db}",
|
|
"POSTGRES_USER=${postgres_user}",
|
|
"POSTGRES_PASSWORD=${postgres_password}",
|
|
]
|
|
|
|
[[config.domains]]
|
|
serviceName = "gitlab"
|
|
port = 80
|
|
host = "${main_domain}"
|