Misskey

Misskey - Decentralized microblogging platform

3000
Default Port
3
Services
18.0/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init misskey

Template Overview

Everything you need to deploy Misskey with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Misskey
misskey/misskey:latest
Postgres
postgres:13
Redis
redis:6
Categories
Database
Security Features
Password Protection
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Misskey up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Misskey with:

Terminal
blastdock init misskey

Interactive mode:

Terminal
blastdock init misskey -i

What's Included

Misskey
Container service
Postgres
Container service
Redis
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Misskey installation with these configuration options.

3
Required Fields
0
Optional Fields
2
Auto-Generated Passwords

Port

Web interface port

port
Default: 3000
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Secret Key

Secret key

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Docker Compose

Complete Docker Compose configuration for Misskey deployment.

3
Services
2
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
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