mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-28 18:49:49 -05:00
13 lines
229 B
Terraform
13 lines
229 B
Terraform
|
|
resource "docker_image" "test" {
|
||
|
|
name = "ubuntu:11"
|
||
|
|
build {
|
||
|
|
context = "."
|
||
|
|
dockerfile = "Dockerfile"
|
||
|
|
force_remove = true
|
||
|
|
builder = "default"
|
||
|
|
platform = "linux/amd64"
|
||
|
|
|
||
|
|
build_log_file = "%s"
|
||
|
|
}
|
||
|
|
}
|