mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-24 08:39:59 -05:00
11 lines
270 B
HCL
11 lines
270 B
HCL
resource "docker_image" "foo" {
|
|
name = "busybox:latest"
|
|
keep_locally = true
|
|
}
|
|
resource "docker_container" "foo" {
|
|
name = "tf-test"
|
|
image = docker_image.foo.image_id
|
|
command = ["/bin/sh", "-c", "exit 123"]
|
|
attach = true
|
|
must_run = false
|
|
}
|