Installation
Docker
Install docker
# Clone repository
git clone -b master https://github.com/misskey-dev/misskey.git
cd misskey
git checkout master
# Create config from template
cp .config/docker_example.yml .config/default.yml
cp .config/docker_example.env .config/docker.env
cp ./compose_example.yml ./compose.yml
# Configure config file
nano .config/default.yml
nano .config/docker.env
# Build and init database
sudo docker compose build
sudo docker compose run --rm web pnpm run init
# Orchestrate
sudo docker compose up -d