Skip to content

tuxisma/etherpad-lite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

etherpad-lite

A repo about etherpad running on Debian/Ubuntu.

I've created a image about Etherpad hosted on (https://hub.docker.com/r/tuxisma/eptlacuaches/) so you can download and use the image in order to deploy it on a container using Docker.

This project has been inspired by Tlacuaches Project so feel free to contribute and try it.

alt text

Quickstart

Step 1

Run a container MySQL

$ docker network create tlacuaches_network
$ docker run -d --network tlacuaches_network -e MYSQL_ROOT_PASSWORD=password --name tlacuachesdb mysql

Step 2

Start an instance of Etherpad Lite:

$ docker run -d \
    --network tlacuaches_network \
    -e ETHERPAD_DB_HOST=tlacuachesdb \
    -e ETHERPAD_DB_PASSWORD=password \
    -p 9001:9001 \
    tuxisma/eptlacuaches

Access Etherpad from http://localhost:9001/ Etherpad will automatically create an etherpad database in the specified mysql server if it does not already exist.

See the next environment variables in order to understand how the image works:

  • ETHERPAD_TITLE: Title of the Etherpad Lite instance. Defaults to "Etherpad".
  • ETHERPAD_PORT: Port of the Etherpad Lite instance. Defaults to 9001.
  • ETHERPAD_SESSION_KEY: Session key for the Etherpad Lite configuration. You can set this in case of migrating from another installation. A value is automatically generated by default.
  • ETHERPAD_ADMIN_PASSWORD: If set, an admin account is enabled for Etherpad, and the /admin/ interface is accessible via it.
  • ETHERPAD_ADMIN_USER: If the admin password is set, this defaults to "admin". Otherwise the user can set it to another username.
  • ETHERPAD_DB_HOST: Hostname of the mysql databse to use. Defaults to mysql
  • ETHERPAD_DB_USER: By default Etherpad Lite will attempt to connect as root to the mysql container.
  • ETHERPAD_DB_PASSWORD: MySQL password to use, mandatory. If legacy links are used and ETHERPAD_DB_USER is root, then MYSQL_ENV_MYSQL_ROOT_PASSWORD is automatically used.
  • ETHERPAD_DB_NAME: The mysql database to use. Defaults to etherpad. If the database is not available, it will be created when the container is launched.

About

A repo about etherpad running on Debian/Ubuntu.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages