Ech0 logo

Ech0 Releases

Self-host your timeline. Own your data. Ship fast.

Latest Releases

Stable versions from v4.4.0 and newer.

Deploy Ech0 Your Way

Choose the path that fits your stack.

Docker Deployment (Recommended)

docker run -d \
  --name ech0 \
  -p 6277:6277 \
  -v /opt/ech0/data:/app/data \
  -e JWT_SECRET="Hello Echos" \
  sn0wl1n/ech0:latest

Docker Compose

docker-compose up -d

In docker-compose.yml, set JWT_SECRET under environment.

More install options

Script Deployment

curl -fsSL "https://raw.githubusercontent.com/lin-snow/Ech0/main/scripts/ech0.sh" -o ech0.sh && bash ech0.sh
# Custom install path:
bash ech0.sh install /your/path/ech0

Kubernetes (Helm)

helm repo add ech0 https://lin-snow.github.io/Ech0
helm repo update
helm install ech0 ech0/ech0
# Local install from source
git clone https://github.com/lin-snow/Ech0.git
cd Ech0
helm install ech0 ./charts/ech0