mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-06 23:09:36 -05:00
10 lines
144 B
Terraform
10 lines
144 B
Terraform
|
|
resource "docker_image" "outside_context" {
|
||
|
|
name = "outside-context:latest"
|
||
|
|
|
||
|
|
build {
|
||
|
|
path = "."
|
||
|
|
dockerfile = "../Dockerfile"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|