Introduction

You'll need to have the Docker tools installed, which you can get from https://www.docker.com/products/docker.
We tested using Docker for Windows, but it shouldn't make any difference which platform you're on.

If you're not familiar with Docker, you can read more about it at Docker.com.

How to build a Docker image

Text in bold denotes commands to be run at the prompt.
Text in italic denotes directory and/or file names.

FROM java:8
ADD content /usr/src/app
WORKDIR /usr/src/app
ENTRYPOINT ["java", "-jar", "./Unimus.jar"]
EXPOSE 8085

Tips

You can push the image to a local instance of Docker Registry if you need to run it on another machine.

We recommend using a separate database, rather than the file-based HSQL option.
This will allow you to update Unimus easily without losing any data.

How to access Unimus

Unimus should now be running at http://localhost:8085, you can access it using your browser.
(substitute 'localhost' for the address of your Docker host)

If this is the first time you run Unimus, we recommend checking out the initial configuration guide here.

Credit

All credit for this guide goes to X-Cubed, here is the original forum topic:
https://forum.unimus.net/viewtopic.php?f=4&t=39