All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- Project is now built with java 1.8 to keep it backwards compatible with this jvm.
- Project is built with java 11
- Dependencies upgraded to be able to run on java 11
- Issue #31, Docker stop command runs the wrong argument; when the library notices another Docker container occupies the port that it needs to run on, a
docker stop
command is initiated for the port-occupying container. However, this logic was flawed, as it tried to stop a container with the same name as the container that had to be started. Fixed by using the proper container name.
- Issue #29, By default use in-memory destination mounts for Docker run; by default the Docker run will make use of in-memory mounts for the application and data path in the standard Postgres Docker image. If in-memory must be disabled, it can be done in the properties. Custom paths can be passed as a list under the inMemoryMountDestinations list.