Installing via Docker
- Install docker according to instructions.
- Pull orienteer image by the following command:
docker pull orienteer/orienteer
. For more details check docker hub repository. - Run new container by command
docker run -p 8080:8080 orienteer/orienteer
. Adjust this command if needed.- You can supply required orienteer properties values with the aid of environments properties. Please use correct naming convention: uppercase and underscore instead of dots. For example to specify
orienteer.admin.password
you should write-e ORIENTEER_ADMIN_PASSWORD=password
- You can supply required orienteer properties values with the aid of environments properties. Please use correct naming convention: uppercase and underscore instead of dots. For example to specify
Using Docker Cloud
Docker Cloud is great thing for deployment (and even automatic redeployment) of a solution on your own promises.
- Register on Docker Cloud
- Add node: either use AWS, DigitalOcean services or "Bring your node"
- Create new service from
orienteer/orienteer:latest
public image. It's recommended to set "autoredeploy" and setup volume for/orienteer/Orienteer
- Create new container for this service. Map container port to required external port.
- After container deployment completion: just go to container URL.