mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-02 12:59:36 -05:00
* feat: Remove deprecated docker_container attributes. * feat: Remove deprecated docker_service atttribute. * feat: Remove deprecated `build` attribute from docker_registry_image. * feat: Remove deprecated attributes of docker_image. * docs: Generate and update documentation. * fix: Add MigrateState for docker_container again. * docs: Fix docs linting errors. * docs: Fix tf formatting in docs.
13 lines
No EOL
193 B
HCL
13 lines
No EOL
193 B
HCL
resource "docker_image" "zoo" {
|
|
name = "zoo"
|
|
build {
|
|
context = "."
|
|
tag = ["zoo:develop"]
|
|
build_arg = {
|
|
foo : "zoo"
|
|
}
|
|
label = {
|
|
author : "zoo"
|
|
}
|
|
}
|
|
} |