Take charge of your agile project management with a modern, self-hosted Kanban solution designed for teams that value privacy and flexibility. Whether you are a small startup or a large organization, this platform adapts to your requirements while ensuring you retain absolute control over your infrastructure and data. Built transparently with strong community input, it offers a highly visual and intuitive interface to organize tasks successfully.
Key benefits and features include:
services:
planka:
image: ghcr.io/plankanban/planka:master
command: >
/bin/sh -c
"./entrypoint.sh start"
restart: unless-stopped
volumes:
- ./user-avatars:/app/public/user-avatars
- ./project-background-images:/app/public/project-background-images
- ./attachments:/app/private/attachments
ports:
- 3000:1337
environment:
- BASE_URL=http://localhost:3000
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres/planka
- SECRET_KEY=${SECRET_KEY}
depends_on:
- postgres
postgres:
image: postgres:14-alpine
restart: unless-stopped
volumes:
- ./db-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=planka
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}POSTGRES_PASSWORD=your_secure_database_password
SECRET_KEY=your_generated_secret_key_32_chars_minimumAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago