Merge branch 'sclaren-kanboard'
This commit is contained in:
commit
fbd8aa018b
25
apps/kanboard/config.json
Normal file
25
apps/kanboard/config.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"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",
|
||||||
|
"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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
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.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
|
19
apps/kanboard/metadata/description.md
Normal file
19
apps/kanboard/metadata/description.md
Normal 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
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Source: https://kanboard.org/
|
BIN
apps/kanboard/metadata/logo.jpg
Normal file
BIN
apps/kanboard/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
Loading…
Reference in New Issue
Block a user