Run EximeeBPMS using Docker

Community Edition

The Community Edition docker images can be found on GitHub and GitHub Container Registry.

Start EximeeBPMS Run using Docker

To start EximeeBPMS Run execute the following commands:

docker pull ghcr.io/eximeebpms/eximeebpms-bpm-platform:latest
docker run -d --name eximeebpms -p 8080:8080 ghcr.io/eximeebpms/eximeebpms-bpm-platform:latest

Please note that by default the Spring Boot distribution is used. For a guide on how to use one of the other distributions, see the tag schema.

For deploying this image on Kubernetes or OpenShift, see Run EximeeBPMS on Kubernetes / OpenShift.

Enterprise Edition

Enterprise Edition Docker images are not published to a public registry. They are distributed through a private, authenticated container registry as part of an EximeeBPMS Enterprise Edition subscription — see Licenses — Enterprise Edition. Contact your EximeeBPMS account team to obtain registry credentials.

Once you have credentials, log in to the registry and pull/run the image the same way as the Community Edition image above:

docker login <registry-host-provided-by-support>
docker pull <registry-host>/eximeebpms/eximeebpms-bpm-platform:run-1.3.1-ee
docker run -d --name eximeebpms -p 8080:8080 <registry-host>/eximeebpms/eximeebpms-bpm-platform:run-1.3.1-ee

The Enterprise Edition image follows the same <distro>-<version> tag scheme as the Community Edition image.

For deploying the Enterprise Edition image on Kubernetes, see Run EximeeBPMS on Kubernetes / OpenShift — Enterprise Edition.

On this page