app: add vikunja
This commit is contained in:
parent
f3343c1714
commit
6997693769
|
@ -64,6 +64,7 @@ This is the official repository for the Tipi App Store. It contains all the apps
|
|||
- [Tube Archivist](https://github.com/tubearchivist/tubearchivist) - Your self-hosted YouTube media server
|
||||
- [Uptime Kuma](https://github.com/louislam/uptime-kuma) - A fancy self-hosted monitoring tool
|
||||
- [Vaultwarden](https://github.com/dani-garcia/vaultwarden) - Unofficial Bitwarden compatible server
|
||||
- [Vikunja](https://kolaente.dev/vikunja/) - The open-source, self-hostable to-do app. Organize everything, on all platforms.
|
||||
- [Wireguard Easy](https://github.com/WeeJeWel/wg-easy) - WireGuard VPN + Web-based Admin UI
|
||||
- [Your Spotify](https://github.com/Yooooomi/your_spotify) - Self hosted Spotify tracking dashboard
|
||||
- [ZeroTier](https://github.com/zerotier/ZeroTierOne) - Easy to use zero configuration VPN.
|
||||
|
|
29
apps/vikunja/config.json
Normal file
29
apps/vikunja/config.json
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"$schema": "../schema.json",
|
||||
"name": "Vikunja",
|
||||
"available": true,
|
||||
"exposable": true,
|
||||
"port": 8135,
|
||||
"id": "vikunja",
|
||||
"tipi_version": 1,
|
||||
"version": "0.20.1",
|
||||
"categories": ["utilities"],
|
||||
"description": "The Todo-app to organize your life.",
|
||||
"short_desc": "The Todo-app to organize your life.",
|
||||
"author": "kolaente",
|
||||
"source": "https://kolaente.dev/vikunja",
|
||||
"website": "https://vikunja.io",
|
||||
"form_fields": [
|
||||
{
|
||||
"type": "random",
|
||||
"label": "Vikunja database password",
|
||||
"random": true,
|
||||
"env_variable": "VIKUNJA_DB_PASSWORD"
|
||||
},
|
||||
{
|
||||
"type": "random",
|
||||
"label": "Vikunja jwt secret",
|
||||
"env_variable": "VIKUNJA_SERVICE_JWTSECRET"
|
||||
}
|
||||
]
|
||||
}
|
21
apps/vikunja/data/proxy/nginx.conf
Normal file
21
apps/vikunja/data/proxy/nginx.conf
Normal file
|
@ -0,0 +1,21 @@
|
|||
worker_processes 1;
|
||||
|
||||
error_log /var/log/nginx/error.log debug;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
location / {
|
||||
proxy_pass http://vikunja-frontend:80;
|
||||
}
|
||||
location ~* ^/(api|dav|\.well-known)/ {
|
||||
proxy_pass http://vikunja-api:3456;
|
||||
client_max_body_size 20M;
|
||||
}
|
||||
}
|
||||
}
|
68
apps/vikunja/docker-compose.yml
Normal file
68
apps/vikunja/docker-compose.yml
Normal file
|
@ -0,0 +1,68 @@
|
|||
version: '3.7'
|
||||
|
||||
services:
|
||||
vikunja-frontend:
|
||||
depends_on:
|
||||
- vikunja-api
|
||||
container_name: vikunja-frontend
|
||||
image: vikunja/frontend:0.20.1
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- tipi_main_network
|
||||
|
||||
vikunja-api:
|
||||
container_name: vikunja-api
|
||||
image: vikunja/api:0.20.1
|
||||
environment:
|
||||
VIKUNJA_DATABASE_HOST: vikunja-db
|
||||
VIKUNJA_DATABASE_PASSWORD: ${VIKUNJA_DB_PASSWORD}
|
||||
VIKUNJA_DATABASE_TYPE: postgres
|
||||
VIKUNJA_DATABASE_USER: tipi
|
||||
VIKUNJA_SERVICE_JWTSECRET: ${VIKUNJA_SERVICE_JWTSECRET}
|
||||
VIKUNJA_SERVICE_FRONTENDURL: ${APP_PROTOCOL:-http}://${APP_DOMAIN}/
|
||||
volumes:
|
||||
- ${APP_DATA_DIR}/data/files:/app/vikunja/files
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
vikunja-db:
|
||||
condition: service_healthy
|
||||
networks:
|
||||
- tipi_main_network
|
||||
|
||||
vikunja-db:
|
||||
container_name: vikunja-db
|
||||
image: postgres:14
|
||||
environment:
|
||||
POSTGRES_PASSWORD: ${VIKUNJA_DB_PASSWORD}
|
||||
POSTGRES_USER: tipi
|
||||
POSTGRES_DB: vikunja
|
||||
volumes:
|
||||
- ${APP_DATA_DIR}/data/db:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
networks:
|
||||
- tipi_main_network
|
||||
|
||||
vikunja:
|
||||
container_name: vikunja
|
||||
image: nginx
|
||||
ports:
|
||||
- ${APP_PORT}:80
|
||||
volumes:
|
||||
- ${APP_DATA_DIR}/data/proxy/nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
depends_on:
|
||||
- vikunja-api
|
||||
- vikunja-frontend
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- tipi_main_network
|
||||
labels:
|
||||
traefik.enable: ${APP_EXPOSED}
|
||||
traefik.http.routers.vikunja.rule: Host(`${APP_DOMAIN}`)
|
||||
traefik.http.routers.vikunja.entrypoints: websecure
|
||||
traefik.http.routers.vikunja.service: vikunja
|
||||
traefik.http.routers.vikunja.tls.certresolver: myresolver
|
||||
traefik.http.services.vikunja.loadbalancer.server.port: 80
|
11
apps/vikunja/metadata/description.md
Normal file
11
apps/vikunja/metadata/description.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
## The Todo-app to organize your life.
|
||||
|
||||
- Create TODO lists with tasks
|
||||
- Reminder for tasks
|
||||
- Namespaces: A "group" which bundles multiple lists
|
||||
- Share lists and namespaces with teams and users with granular permissions
|
||||
- Plenty of details for tasks
|
||||
|
||||
See the [features page](https://vikunja.cloud/features) on our website for a more exaustive list or try it on [try.vikunja.io](try.vikunja.io)!
|
||||
|
||||

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