Favicon of Etherpad

Etherpad

Experience truly real-time document editing. This open-source tool lets you write articles, lists, and notes together with others, directly in your browser.

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:

  • A well-documented API that provides access to all data.
  • Import and export capabilities supporting many major data exchange formats.
  • An extensive library of plugins to customize your instance and add new functionalities.

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.

Directory Structure

etherpad
postgres-data
.env
docker-compose.yml

docker-compose.yml

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-stopped

.env

DB_PASS=your_super_secret_db_password
ADMIN_PASSWORD=your_super_secret_admin_password
Categories:

Share:

Ad
Favicon

 

  
 

Similar to Etherpad

Favicon

 

  
  
Favicon

 

  
  
Favicon