Install using Docker
The Dopenote Docker image is automatically updated on every release.
Docker is the only recommended way of setting up your own Dopenote instance. If you still aren't familiar with Docker, now is the time to start.
1. Environment file
First you have to create a .env
file with the database settings:
Remember to set a random password for DB_PASSWORD
and DB_ROOT_PASSWORD
.
2. Docker-compose.yml file
In the same directory as your .env
file, add a new docker-compose.yml
file:
Run docker-compose up -d
and go to http://[YOUR_SERVER_IP]:82
Upgrading
Edit your
docker-compose.yml
file, and changeimage: dopenote/dopenote:X.X
to the latest release.Run
docker-compose up -d
and you're done.
Last updated