From 26ebe3f1f334006fd92fe4ebfc27ce63beee53a9 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Thu, 20 Apr 2023 20:56:06 +0200 Subject: [PATCH] fix(kanboard): change traefik router name from it-tools to kanboard --- apps/kanboard/config.json | 25 +++++++++++++------------ apps/kanboard/docker-compose.yml | 12 ++++++------ 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/apps/kanboard/config.json b/apps/kanboard/config.json index 6140160a..5e62a02c 100644 --- a/apps/kanboard/config.json +++ b/apps/kanboard/config.json @@ -3,22 +3,23 @@ "available": true, "exposable": true, "port": 8010, - "id": "kanboard", - "description": "Kanboard is a free and open source Kanban project management software.", + "id": "kanboard", + "description": "Kanboard is a free and open source Kanban project management software.", "tipi_version": 1, - "version": "1.2.28", + "version": "1.2.28", "categories": ["development"], - "short_desc": "Open Source Kanban Board", + "short_desc": "Open Source Kanban Board", "author": "Frédéric Guillot", "source": "https://github.com/kanboard/kanboard", + "website": "https://kanboard.org/", "form_fields": [ { - "type": "text", - "label": "Enable Plugin Installer (true or false)", - "max": 5, - "min": 4, - "required": true, - "env_variable": "PLUGIN_INSTALLER" + "type": "text", + "label": "Enable Plugin Installer (true or false)", + "max": 5, + "min": 4, + "required": true, + "env_variable": "PLUGIN_INSTALLER" } - ] -} \ No newline at end of file + ] +} diff --git a/apps/kanboard/docker-compose.yml b/apps/kanboard/docker-compose.yml index 01679181..b786ba51 100644 --- a/apps/kanboard/docker-compose.yml +++ b/apps/kanboard/docker-compose.yml @@ -1,4 +1,4 @@ -version: "3.9" +version: '3.9' services: kanboard: @@ -16,8 +16,8 @@ services: - tipi_main_network labels: traefik.enable: ${APP_EXPOSED} - traefik.http.routers.it-tools.rule: Host(`${APP_DOMAIN}`) - traefik.http.routers.it-tools.entrypoints: websecure - traefik.http.routers.it-tools.service: kanboard - traefik.http.routers.it-tools.tls.certresolver: myresolver - traefik.http.services.it-tools.loadbalancer.server.port: 80 \ No newline at end of file + traefik.http.routers.kanboard.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.kanboard.entrypoints: websecure + traefik.http.routers.kanboard.service: kanboard + traefik.http.routers.kanboard.tls.certresolver: myresolver + traefik.http.services.kanboard.loadbalancer.server.port: 80