Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

After making changes to the code, use the command:
docker-compose -f docker-compose.builder.yml run builder
to trigger HotSwapAgent and deliver changes to the running container. To speed up the reload process, you can add options to

Hint:
As the builder process can be very time-consuming because it contains a lot of tasks to perform, we can minimize this time by modifying the build.sh file that allow you to skip some steps included in the builderso that it only performs the compileJava task, e.g.:

...

We can also customize the process in any way in terms of the steps to be performed, e.g. to skip unit and integration tests, we can exclude them through the following options: -x test -x integrationTest.

...