This repository has been archived on 2024-11-12. You can view files and clone it, but cannot push or open issues or pull requests.
iac/printers.tf

14 lines
No EOL
314 B
HCL

resource "docker_image" "octoprint" {
provider = "docker.printi"
name = "octoprint"
build {
context = "${path.module}/printers"
target = "octoprint-mjpg-streamer"
}
}
/*
resource "docker_container" "corexy" {
provider = "docker.printi"
image = docker_image.octoprint.name
name = "corexy"
}*/