From c80a2c9a581d6e41d80c3fcbe6c4be4667ca05c5 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Wed, 22 Oct 2025 14:23:39 +0100 Subject: [PATCH] Remove unused leantime config. --- services/leantime.hcl | 51 ------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 services/leantime.hcl diff --git a/services/leantime.hcl b/services/leantime.hcl deleted file mode 100644 index c581d85..0000000 --- a/services/leantime.hcl +++ /dev/null @@ -1,51 +0,0 @@ -job "leantime" { - datacenters = ["alo"] - - group "web" { - network { - port "http" { - to = 80 - } - } - - task "server" { - driver = "docker" - - config { - image = "leantime/leantime:latest" - ports = ["http"] - volumes = [ - "/data/compute/appdata/leantime:/var/www/html/userfiles", - ] - } - - env { - LEAN_DEFAULT_TIMEZONE = "Europe/Lisbon" - LEAN_DB_HOST = "mysql.service.consul" - LEAN_DB_USER = "leantime" - LEAN_DB_PASSWORD = "Xuphaedoo9kuaseeQuei" - LEAN_DB_DATABASE = "leantime" - LEAN_EMAIL_RETURN = "leantime@paler.net" - LEAN_APP_URL = "https://leantime.v.paler.net" - LEAN_EMAIL_SMTP_HOSTS = "192.168.1.1" - LEAN_EMAIL_SMTP_AUTH = "false" - LEAN_OIDC_ENABLE = "true" - LEAN_OIDC_CREATE_USER = "true" - LEAN_OIDC_PROVIDER_URL = "https://authentik.v.paler.net/application/o/leantime/" - LEAN_OIDC_CLIENT_ID = "nWqJu9g4avhdpmUzqqvjsExCA1Jrick7GSMd0D6u" - LEAN_OIDC_CLIENT_SECRET = "VvPQi5q3kkVTCwN8QWwwPTCqjWc9VbRanCFxa0zB2mhr1ZPxUYXP7Ygg6naMInE4P5vyqJd5w8XiWkuecW14G4KxgXpFtWChKnCOOpe47gjZGNbkYIEDZUmkUB99Saxx" - } - - service { - name = "leantime" - port = "http" - - tags = [ - "traefik.enable=true", - "traefik.http.routers.leantime.entryPoints=websecure", - "traefik.http.routers.leantime.middlewares=authentik@file", - ] - } - } - } -}