diff --git a/blueprints/gel/template.toml b/blueprints/gel/template.toml index 2861e762..6a8f65fb 100644 --- a/blueprints/gel/template.toml +++ b/blueprints/gel/template.toml @@ -1,16 +1,14 @@ -version: "3.8" -services: - gel: - image: geldata/gel:6 - restart: unless-stopped - ports: - - 5656 - environment: - - GEL_SERVER_SECURITY=${GEL_SERVER_SECURITY} - - GEL_SERVER_PASSWORD=${GEL_SERVER_PASSWORD} - - GEL_SERVER_TLS_CERT_MODE=generate_self_signed - volumes: - - gel-data:/var/lib/gel/data +[variables] +main_domain = "${domain}" +gel_password = "${password:24}" +gel_security = "strict" -volumes: - gel-data: {} +[config] +[[config.domains]] +serviceName = "gel" +port = 5656 +host = "${main_domain}" + +[config.env] +GEL_SERVER_PASSWORD = "${gel_password}" +GEL_SERVER_SECURITY = "${gel_security}"