Added Kanboard App
This commit is contained in:
parent
fd5ee51a0d
commit
4fa04c1664
23
apps/kanboard/config.json
Normal file
23
apps/kanboard/config.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
23
apps/kanboard/docker-compose.yml
Normal file
23
apps/kanboard/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user