mirror of
https://github.com/cupcakearmy/docker-etherpad.git
synced 2024-12-21 07:26:25 +00:00
Etherpad docker image
dirty.db | ||
docker-compose.yml | ||
Dockerfile | ||
LICENSE | ||
README.md | ||
settings.json | ||
start.sh |
Etherpad Docker
Etherpad docker image with docker-compose support.
Quickstart 💥
docker-compose up -d
Setup 🏗
git clone https://github.com/CupCakeArmy/docker-etherpad
cd docker-etherpad
# Modify settings
vim settings.json
# Run
docker-compose up -d
(Default) Persist the DB 💽
By default the DB is persisted into dirty.db
.
To start with a clean state you need to delete the dirty.db
file.
Either run rm dirty.db; touch dirty.db
or cat /dev/null > dirty.db
.
docker-compose requires that the file exists, otherwise it will mount it as a folder.