Focalboard - Open source project management tool
Everything you need to deploy Focalboard with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Focalboard up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Focalboard with:
blastdock init focalboard
Interactive mode:
blastdock init focalboard -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Focalboard installation with these configuration options.
Web interface port
Database password
Complete Docker Compose configuration for Focalboard deployment.
version: '3.8'
services:
postgres:
image: postgres:13
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_PASSWORD={{ db_password }}
1: POSTGRES_USER=focalboard
2: POSTGRES_DB=focalboard
volumes:
- /var/lib/postgresql/data
networks:
- focalboard_network
focalboard:
image: mattermost/focalboard:latest
container_name: {{ project_name }}_focalboard
restart: unless-stopped
depends_on:
- postgres
ports:
- "8000"
environment:
0: VIRTUAL_HOST=localhost
1: VIRTUAL_PORT=8000
2: POSTGRES_USER=focalboard
3: POSTGRES_PASSWORD={{ db_password }}
4: POSTGRES_DB=focalboard
5: POSTGRES_HOST=postgres
volumes:
- /data
networks:
- focalboard_network
volumes:
postgres_data:
driver: local
focalboard_data:
driver: local
networks:
focalboard_network:
driver: bridge