Installing in a Docker Container
OrientDB images are available through the dedicated page on Docker hub site
Building the image on your own
Dockerfiles are available on a dedicated repository. The repository has a folder for each maintained version of OrientDB. Dockerfiles are approved by Docker's team.. This allows to build images on your own or even customize them for your special purpose.
- Clone this project to a local folder:
git clone https://github.com/orientechnologies/orientdb-docker.git
- Build the image for 2.1.x:
cd 2.1 docker build -t <YOUR_DOCKER_HUB_USER>/orientdb:2.1.16 .
- Push it to your Docker Hub repository (it will ask for your login credentials):
docker push <YOUR_DOCKER_HUB_USER>/orientdb:2.1.16