mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-26 01:29:36 -05:00
* tests: Add file_permission test which is failing for now. * tests: Add whitelist_dockerignore test which is failing for now. * fix: Various issues with docker_registry_image build process.
17 lines
305 B
HCL
17 lines
305 B
HCL
provider "docker" {
|
|
alias = "private"
|
|
registry_auth {
|
|
address = "%s"
|
|
}
|
|
}
|
|
|
|
resource "docker_registry_image" "file_permissions" {
|
|
provider = "docker.private"
|
|
name = "%s"
|
|
insecure_skip_verify = true
|
|
|
|
build {
|
|
context = "%s"
|
|
dockerfile = "%s"
|
|
}
|
|
}
|