terraform-provider-docker/testdata/resources/docker_container/testAccDockerContainerWait.tf
Martin 0663aeb1a4
fix: Improve container wait handling (#709)
* fix: Improve container wait handling

* chore: Noop change to trigger CI

* fix: Adapt expected error regexp
2025-04-24 22:15:05 +02:00

11 lines
208 B
HCL

resource "docker_image" "this" {
name = "busybox:latest"
keep_locally = true
}
resource "docker_container" "this" {
name = "tf-test"
image = docker_image.this.image_id
wait = true
rm = false
}