Self-hosting the Relay
The relay server is a single Go binary that handles HTTP push and WebSocket delivery, backed by SQLite.
Docker (recommended)
Section titled “Docker (recommended)”docker run -d \ -p 8080:8080 \ -v cinch-data:/data \ ghcr.io/jinmugo/cinch-relay:latestDocker Compose
Section titled “Docker Compose”services: relay: image: ghcr.io/jinmugo/cinch-relay:latest ports: - "8080:8080" volumes: - cinch-data:/data
volumes: cinch-data:Build from source
Section titled “Build from source”git clone https://github.com/JinmuGo/cinch.gitcd cinchmake build-relay./dist/relay