./gradlew bootJar
docker build from the root directory
docker build -t app.jar .
This will load the dashboard and one background job server
docker compose up
A lot of load incoming - scale background job servers up:
docker compose up --scale springboot-backend=3
http://localhost:8000/dashboard/overview
http://localhost:8080/via-job-lambda/enqueue-example-job
springboot-backend_2 | Executing sample job with input: Hello World
springboot-backend_3 | Executing sample job with input: Hello World
springboot-backend_3 | Executing sample job with input: Hello World
springboot-backend_1 | The recurring job has begun.