We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The start interval is an option introduced in Docker 25.0.
The docker_container healthcheck schema is missing the start_interval in order to reflect the Docker API.
start_interval
resource "docker_container" "my-image" { # ... healthcheck { test = ["CMD", "curl", "-f", "http://localhost:3000"] interval = "1m" start_interval = "2s" } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Community Note
Description
The start interval is an option introduced in Docker 25.0.
The docker_container healthcheck schema is missing the
start_interval
in order to reflect the Docker API.New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: