2020-07-02 11:22:52 -04:00
# HedgeDoc Docker Image
2019-03-31 10:02:05 -04:00
2021-03-04 12:37:53 -05:00
!!! info "Requirements on your server"
- [Git ](https://git-scm.com/ )
- [Docker ](https://docs.docker.com/get-docker/ ) 17.03.1 or higher
- [Docker Compose ](https://docs.docker.com/compose/install/ )
2019-03-31 10:02:05 -04:00
2021-03-04 12:37:53 -05:00
The official docker images are [available on quay.io ](https://quay.io/repository/hedgedoc/hedgedoc ).
2021-04-13 15:27:35 -04:00
We currently only support the `amd64` architecture.
2019-03-31 10:02:05 -04:00
2021-03-04 12:37:53 -05:00
The easiest way to get started with HedgeDoc and Docker is to use the following `docker-compose.yml` :
2019-03-31 10:02:05 -04:00
2021-04-13 15:27:35 -04:00
!!! warning
This is a minimal example to get started quickly and not intended for production use.
```yaml
version: '3'
services:
database:
2021-08-14 11:15:40 -04:00
image: postgres:13.4-alpine
2021-04-13 15:27:35 -04:00
environment:
- POSTGRES_USER=hedgedoc
- POSTGRES_PASSWORD=password
- POSTGRES_DB=hedgedoc
volumes:
- database:/var/lib/postgresql/data
restart: always
app:
# Make sure to use the latest release from https://hedgedoc.org/latest-release
2023-07-30 12:10:32 -04:00
image: quay.io/hedgedoc/hedgedoc:1.9.9
2021-04-13 15:27:35 -04:00
environment:
- CMD_DB_URL=postgres://hedgedoc:password@database:5432/hedgedoc
- CMD_DOMAIN=localhost
- CMD_URL_ADDPORT=true
volumes:
- uploads:/hedgedoc/public/uploads
ports:
- "3000:3000"
restart: always
depends_on:
- database
volumes:
database:
uploads:
2019-03-31 10:02:05 -04:00
```
2022-02-14 09:16:01 -05:00
After executing `docker-compose up` , HedgeDoc should be available at [http://localhost:3000 ](http://localhost:3000 ).
2021-04-13 15:27:35 -04:00
You can now continue to configure your container with environment variables.
2021-03-04 12:37:53 -05:00
Check out [the configuration docs ](/configuration ) for more details.
2021-11-24 16:46:16 -05:00
## File Permissions
By default, HedgeDoc will change the permissions of the uploads directory to
`0700` on every start of the Docker container. This is OK if you keep the files
in a named volume, but if you want to serve the files from a webserver on your
host (e.g. an Nginx reverse proxy) the webserver may not have the permission to
read the files.
To fix this, you can set the `UPLOADS_MODE` env variable to something other
than `0700` .
2021-03-04 12:37:53 -05:00
## Upgrading
!!! warning
Before you upgrade, **always read the release notes** .
You can find them on our [releases page ](https://hedgedoc.org/releases/ ).
!!! info "Upgrading to 1.7"
Together with changing the name to "HedgeDoc" the default username,
password and database name have been changed in `docker-compose.yml` .
In order to migrate the existing database to the new default credentials, run
```shell
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` .
2021-04-13 15:27:35 -04:00
You can upgrade to the latest release by stopping the containers and changing the referenced image version in `docker-compose.yml` .
Then run `docker-compose up` to start HedgeDoc again.
2021-03-04 12:37:53 -05:00
2021-04-13 15:43:48 -04:00
### Migrating from CodiMD & HackMD
2021-03-04 12:37:53 -05:00
2021-04-13 15:43:48 -04:00
If you currently use CodiMD or HackMD, you should be able to swap the docker image for ours.
See [the general migration hints ](/setup/getting-started/#migrating-from-codimd-hackmd ) for compatibility details.
2021-03-04 12:37:53 -05:00
## Backup
If you use a PostgreSQL database, you can leverage this command to create a backup:
```shell
docker-compose exec database pg_dump hedgedoc -U hedgedoc > backup.sql
```
## Restore
If you want to restore your PostgreSQL backup, run these commands before starting the application for the first time:
```shell
docker-compose up -d database
cat backup.sql | docker exec -i $(docker-compose ps -q database) psql -U hedgedoc
```