Build a unique, decentralized social networking platform tailored to your specific needs. Whether hosting a personal hub, a community space, or a private network, this open-source software provides the tools to connect directly to the Fediverse using the ActivityPub protocol. Enjoy complete ownership of your data without relying on corporate platforms.
Take advantage of a robust set of features designed for administrators and users:
services:
web:
image: misskey/misskey:latest
restart: always
links:
- db
- redis
ports:
- "3000:3000"
networks:
- internal_network
- external_network
volumes:
- ./files:/misskey/files
- ./config:/misskey/.config:ro
depends_on:
- db
- redis
redis:
restart: always
image: redis:7-alpine
networks:
- internal_network
volumes:
- ./redis-data:/data
db:
restart: always
image: postgres:15-alpine
networks:
- internal_network
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_DB: ${POSTGRES_DB}
volumes:
- ./db-data:/var/lib/postgresql/data
networks:
internal_network:
internal: true
external_network:POSTGRES_PASSWORD=your_super_secret_db_password
POSTGRES_USER=misskey
POSTGRES_DB=misskeyAuto-fetched about 22 hours ago
Auto-fetched about 22 hours ago