DolphinNext original repository is located at https://github.com/UMMS-Biocore/dolphinnext.
For a quick start please check our quick start guide. https://dolphinnext.readthedocs.io/en/latest/dolphinNext/quick.html
DolphinNext can also be run as a standalone application using a docker container. First docker image need to be build unless you want to use prebuild from dockerhub. So, any change in the Dockerfile requires to build the image. But if you want to use prebuild version just skip building it and start the container.
- To build docker image first clone one of the latest dolphinnext-docker
git clone https://github.com/UMMS-Biocore/dolphinnext-docker.git
- Build the image
cd dolphinnext-docker docker build -t dolphinnext-docker .
- We move database outside of the container to be able to keep the changes in the database everytime you start the container. Please choose a directory in your machine to mount. For example, I will use /mnt/sda1/export directory for this purpose.
mkdir -p /mnt/sda1/export/
- While running the container;
docker run --privileged -m 10G -p 8080:80 -v /mnt/sda1/export:/export -ti dolphinnext-docker /bin/bash
*if you want to run a pre-build
docker run --privileged -m 10G -p 8080:80 -v /mnt/sda1/export:/export -ti ummsbiocore/dolphinnext-docker /bin/bash
or with R markdown support;
docker run --privileged -m 10G -p 8080:80 -v /mnt/sda1/export:/export -ti ummsbiocore/dolphinnext-studio /bin/bash
- After you start the container, you need to start the mysql and apache server usign the command below;
startup
- Now, you can open your browser to access dolphinnext using the url below.