Create Docker Image of Camunda Project

Hi all, I’m new to this community. I enjoy working with Camunda. I have a requirement where I have to create docker image of my existing camunda project. I’ve used the project template from https://start.camunda.com/ and I wonder do we have any guidelines/tutorial to create docker image of camunda project? I’m new to Docker technology too, I apologize for asking beginner question. I would really appreciate any help/guidelines. Thank you.

@hello.aliasad you can refer this for docker setup: camunda-docker-instalation documentation.

docker pull camunda/camunda-bpm-platform:latest

docker run -d --name camunda -p 8080:8080 camunda/camunda-bpm-platform:latest

https://hub.docker.com/r/camunda/camunda-bpm-platform/

1 Like

Thank you so much.