mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-21 23:29:59 -05:00
7 lines
126 B
Terraform
7 lines
126 B
Terraform
|
|
resource "docker_registry_image" "helloworld" {
|
||
|
|
name = "helloworld:1.0"
|
||
|
|
|
||
|
|
build {
|
||
|
|
context = "pathToContextFolder"
|
||
|
|
}
|
||
|
|
}
|