mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-25 09:09:35 -05:00
* feat(src): Enable buildkit when client has support. * fix: Increase timeout of testsuite to 12min * fix: docker_image datasource tests use smaller busybox image. * fix: Use image version which are available on arm64. * fix: Remove session dialer from buildkit implementation. Did not do really anything * feat: Buildkit is now working. * fix: Disable linting for one specific line. * fix: Fixes TestAccDockerImage_basic test. The used image names in the two subtests must be different.
7 lines
245 B
HCL
7 lines
245 B
HCL
data "docker_registry_image" "foobarbazoo" {
|
|
name = "alpine:3.16.0"
|
|
}
|
|
resource "docker_image" "foobarbazoo" {
|
|
name = data.docker_registry_image.foobarbazoo.name
|
|
pull_trigger = data.docker_registry_image.foobarbazoo.sha256_digest
|
|
}
|