Stop sending documents back and forth via email. This tool provides a highly customizable, open-source online editor for collaborative editing in truly real-time. It functions like a live, multi-player editor that runs directly in your browser. Simply set up a document, share the link, and start working together on articles, press releases, or to-do lists simultaneously.
As an open-source platform, it offers significant flexibility and control. Key features include:
You can get started immediately by using one of the many publicly available instances, or you can choose to set up your own server for complete privacy and control.
services:
etherpad:
image: etherpad/etherpad:latest
container_name: etherpad
ports:
- "9001:9001"
environment:
- DB_TYPE=postgres
- DB_HOST=postgres
- DB_PORT=5432
- DB_NAME=etherpad
- DB_USER=etherpad
- DB_PASS=${DB_PASS}
- ADMIN_PASSWORD=${ADMIN_PASSWORD}
depends_on:
- postgres
restart: unless-stopped
postgres:
image: postgres:15-alpine
container_name: etherpad_db
environment:
- POSTGRES_DB=etherpad
- POSTGRES_USER=etherpad
- POSTGRES_PASSWORD=${DB_PASS}
volumes:
- ./postgres-data:/var/lib/postgresql/data
restart: unless-stoppedDB_PASS=your_super_secret_db_password
ADMIN_PASSWORD=your_super_secret_admin_passwordAuto-fetched about 22 hours ago
Auto-fetched about 22 hours ago