Misskey - Decentralized microblogging platform
Everything you need to deploy Misskey 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 Misskey up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Misskey with:
blastdock init misskey
Interactive mode:
blastdock init misskey -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 Misskey installation with these configuration options.
Web interface port
Database password
Secret key
Complete Docker Compose configuration for Misskey 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=misskey
2: POSTGRES_DB=misskey
volumes:
- /var/lib/postgresql/data
networks:
- misskey_network
redis:
image: redis:6
container_name: {{ project_name }}_redis
restart: unless-stopped
networks:
- misskey_network
misskey:
image: misskey/misskey:latest
container_name: {{ project_name }}_misskey
restart: unless-stopped
depends_on:
- postgres
- redis
ports:
- "3000"
environment:
0: NODE_ENV=production
1: POSTGRES_HOST=postgres
2: POSTGRES_PORT=5432
3: POSTGRES_DB=misskey
4: POSTGRES_USER=misskey
5: POSTGRES_PASSWORD={{ db_password }}
6: REDIS_HOST=redis
7: REDIS_PORT=6379
8: SECRET_KEY={{ secret_key }}
volumes:
- /misskey/files
networks:
- misskey_network
volumes:
postgres_data:
driver: local
misskey_files:
driver: local
networks:
misskey_network:
driver: bridge