HedgeDoc container image resources
HedgeDoc docker images are available in two flavors: Debian and Alpine. These are available at quay.io:
https://quay.io/repository/hedgedoc/hedgedoc
docker pull quay.io/hedgedoc/hedgedoc:1.7.2-debian docker pull quay.io/hedgedoc/hedgedoc:1.7.2-alpine
We recommend using the Debian version for production deployments and Alpine for expert setups.
See more here: https://docs.docker.com/
git clone https://github.com/hedgedoc/container.git hedgedoc-container
hedgedoc-containerdirectory
docker-compose upin your terminal
HTTP Server listening at port 3000, it will take few minutes based on your internet connection.
Start your docker and enter the terminal, follow below commands:
cd hedgedoc-container ## enter the directory git pull ## pull new commits docker-compose pull ## pull new containers docker-compose up ## turn on
Together with the update to HedgeDoc 1.7, the database user name, password and database name have been changed in
docker-compose.yml.
In order to migrate the existing database to the new default credentials, run
docker-compose exec database createuser --superuser -Uhackmd postgres docker-compose exec database psql -Upostgres -c "alter role hackmd rename to hedgedoc; alter role hedgedoc with password 'password'; alter database hackmd rename to hedgedoc;"
before running
docker-compose up.
docker-hackmdrepository before, migrating to
hedgedoc-containeris easy.
Since
hedgedoc-containeris basically a fork of
docker-hackmd, all you need to do is replace the upstream URL:
git remote set-url origin https://github.com/hedgedoc/container.git git pull
Now you can follow the regular update steps.
Start your docker and enter the terminal, follow below commands:
docker-compose exec database pg_dump hedgedoc -U hedgedoc > backup.sql
Before starting the application for the first time, run these commands:
docker-compose up -d database cat backup.sql | docker exec -i $(docker-compose ps -q database) psql -U hedgedoc
The default setting is to use pre-built docker images. If you want to build your own containers uncomment the
buildsection in the
docker-compose.ymland edit the
config.json.
If you change the database settings and don't use the
CMD_DB_URLmake sure you edit the
.sequelizerc.
View license information for the software contained in this image.
This image is officially supported on Docker version 17.03.1-CE.
Support for older versions (down to 1.12) is provided on a best-effort basis.
Please see the Docker installation documentation for details on how to upgrade your Docker daemon.
If you have any problems with or questions about this image, please contact us through a GitHub issue.
You can also reach many of the project maintainers via our matrix room
#hedgedoc:matrix.org.
You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
Happy HedgeDoc :smile: