Camunda Docker

To get latest BPM platform for Docker we normally use the following as first line in Dockerfile

FROM camunda/camunda-bpm-platform:tomcat-latest

How do i get version 7.6 using above approach?

Hi,

there is no 7.6 image, as Camunda 7.6 is not supported anymore since May. The oldest image is 7.7 which you could pull with camunda/camunda-bpm-platform:tomcat-7.7.0.

In case you need a 7.6 image you should be able to build it by setting the Version to 7.6.0 as shown in the docs https://github.com/camunda/docker-camunda-bpm-platform#build-a-released-version.

Cheers,
Sebastian

Thanks Sebastian.