Added Kanboard App

This commit is contained in:
Sascha Claren 2023-04-20 10:05:43 +00:00
parent fd5ee51a0d
commit 4fa04c1664
2 changed files with 46 additions and 0 deletions

23
apps/kanboard/config.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "Kanboard",
"available": true,
"port": 8010,
"id": "kanboard",
"description": "Kanboard is a free and open source Kanban project management software.",
"tipi_version": 1,
"version": "1.2.28",
"categories": ["development"],
"short_desc": "Open Source Kanban Board",
"author": "Frédéric Guillot",
"source": "https://github.com/kanboard/kanboard",
"form_fields": [
{
"type": "text",
"label": "Enable Plugin Installer",
"max": 5,
"min": 4,
"required": true,
"env_variable": "PLUGIN_INSTALLER"
}
]
}

View File

@ -0,0 +1,23 @@
version: "3.9"
services:
kanboard:
container_name: kanboard
image: kanboard/kanboard:v1.2.28
environment:
- PLUGIN_INSTALLER = ${PLUGIN_INSTALLER}
ports:
- ${APP_PORT}:80
restart: unless-stopped
volumes:
- ${APP_DATA_DIR}/data/kanboard_data:/var/www/app/data
- ${APP_DATA_DIR}/data/kanboard_plugins:/var/www/app/plugins
networks:
- 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