/etherpad-sqlite-docker

Dockerfile for etherpad-lite with sqlite installed. Not maintaned, for new repo see:

Primary LanguageShellMIT LicenseMIT

etherpad-sqlite-docker

Docker image for etherpad-lite with the sqlite dependency installed. For documentation, see ether/etherpad-lite.

Links

Example usage

# docker-compose.yml
version: '3.7'
services:
  etherpad:
    image: tiimb/etherpad-sqlite
    restart: unless-stopped
    ports:
      - 9001:9001
    volumes:
      - ~/docker/etherpad:/opt/etherpad-lite/var/db
    environment:
      - DB_TYPE=sqlite
      - DB_FILENAME=var/db/db.sqlite
# create folder for the database
mkdir -p ~/docker/etherpad
chmod 777 ~/docker/etherpad

docker-compose up