mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-23 08:09:37 -05:00
Contains the changes of the following PRs https://github.com/kreuzwerker/terraform-provider-docker/pull/576 @triggerNZ https://github.com/kreuzwerker/terraform-provider-docker/pull/536 @Tyonar https://github.com/kreuzwerker/terraform-provider-docker/pull/539 @matthew-palmer https://github.com/kreuzwerker/terraform-provider-docker/pull/541 @siddharthab https://github.com/kreuzwerker/terraform-provider-docker/pull/546 @akeamc https://github.com/kreuzwerker/terraform-provider-docker/pull/549 @manju-rn https://github.com/kreuzwerker/terraform-provider-docker/pull/665 @tparikka https://github.com/kreuzwerker/terraform-provider-docker/pull/559 @tk3fftk
9 lines
No EOL
186 B
HCL
9 lines
No EOL
186 B
HCL
resource "docker_image" "zoo" {
|
|
name = "zoo"
|
|
build {
|
|
context = "."
|
|
}
|
|
triggers = {
|
|
dir_sha1 = sha1(join("", [for f in fileset(path.module, "src/**") : filesha1(f)]))
|
|
}
|
|
} |