Skip to content

Commit

Permalink
update of the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-shymov committed Sep 26, 2024
1 parent b5f3135 commit 4af1ed1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ChangeLog
* **0.46-SNAPSHOT**:
- Make copy docker-buildx binary to temporary config directory work on windows too ([1819](https://github.com/fabric8io/docker-maven-plugin/pull/1819))
- Docker-compose healthcheck configuration support
- Docker container wait timeout default value made configurable using defaultContainerWaitTimeout configuration option
- Docker-compose healthcheck configuration support ([1825](https://github.com/fabric8io/docker-maven-plugin/pull/1825))
- Docker container wait timeout default value made configurable using defaultContainerWaitTimeout configuration option ([1825](https://github.com/fabric8io/docker-maven-plugin/pull/1825))

* **0.45.0 (2024-07-27)**:
- Automatically create parent directories of portPropertyFile path ([1761](https://github.com/fabric8io/docker-maven-plugin/pull/1761))
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/io/fabric8/maven/docker/StartMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,10 @@ public class StartMojo extends AbstractDockerMojo {
protected boolean autoCreateCustomNetworks;

/**
* Global across all the containers default wait time is milliseconds.
* Overrides the default across all the containers wait time is milliseconds.
* Overriding that property might become particularly useful when docker-compose config defines
* the healthchecks, but some containers require more time to become healthy.
* the healthchecks, but the default wait timeout {@link io.fabric8.maven.docker.wait.WaitUtil#DEFAULT_MAX_WAIT}
* is too short for some containers to become healthy.
*/
@Parameter(property = DOCKER_DEFAULT_CONTAINER_WAIT_TIMEOUT, defaultValue = "10000")
protected int defaultContainerWaitTimeout = 10000;
Expand Down

0 comments on commit 4af1ed1

Please sign in to comment.