Merge branch 'kanboard' of https://github.com/sclaren/runtipi-appstore into sclaren-kanboard

This commit is contained in:
Nicolas Meienberger 2023-04-20 20:48:18 +02:00
commit e47da9661b
4 changed files with 66 additions and 0 deletions

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

@ -0,0 +1,24 @@
{
"name": "Kanboard",
"available": true,
"exposable": 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 (true or false)",
"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

View File

@ -0,0 +1,19 @@
# Kanboard
Kanboard is a free and open source Kanban project management software.
## Default credentials
Username: admin
Password: admin
## Hint
**Plugins currently not installable via Kanboard Web Interface**
- Kanban Board
- Visualize your work
- Limit your work in progress to focus on your goal
- Drag and drop tasks to manage your project
![screenshot](https://kanboard.org/assets/img/board.png)
Source: https://kanboard.org/

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB