- Express backend with SQLite - Session-based authentication - Drag-and-drop Kanban board - API key auth for service integration - Dark vainplex theme
15 lines
277 B
YAML
15 lines
277 B
YAML
services:
|
|
taskboard:
|
|
build: .
|
|
container_name: taskboard
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3003:3000"
|
|
volumes:
|
|
- taskboard-data:/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
- WEBHOOK_URL=${WEBHOOK_URL:-}
|
|
|
|
volumes:
|
|
taskboard-data:
|