Skip to content

Loydl/camunda-spring-docker-demo1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Camunda Process Application with Spring Boot and Docker.. Demo

Spring Boot 3.2
Camunda 7.10.0
Docker

##Installation Create the Camunda process application fat jar file
mvn clean install

Build and run with the Docker containers with docker-compose
docker-compose up --build

Docker CLI (optional)
docker build -t loydlconsulting/cwp-mabritec .
docker run -p 8080:8080 loydlconsulting/cwp-mabritec

Launch in the Background
docker-compose up -d

Stop containers
docker-compose down

Access the Camunda Tasklist, Admin, Cockpit

http://localhost:8080
username/password = demo/demo

Access the Camunda REST API

example: Fetch engine names:
http://localhost:8080/rest/engine

Access the simple web application (node.js)

http://localhost:8050