Deploy with Docker
Docker provides a lightweight virtualization to use LabxDB. A Dockerfile can be used to build a LabxDB image automatically based on Debian GNU/Linux operating system.
Install Docker and start the docker
service.
Build the debian/labxdb image
docker build -f Dockerfile -t debian/labxdb .
You can then see the newly built image using the following command:
docker images
Start the debian/labxdb image
To start debian/labxdb image, use the following command:
docker run -it -p 8081:8081 debian/labxdb
The web interface runs on port 8081 which is exposed on the Docker interface also on port 8081.