Skip to content

Instantly share code, notes, and snippets.

@stevenfrst
Created April 28, 2019 11:53
Show Gist options
  • Save stevenfrst/731ad7fe80a84f3788fdf43686cca8d1 to your computer and use it in GitHub Desktop.
Save stevenfrst/731ad7fe80a84f3788fdf43686cca8d1 to your computer and use it in GitHub Desktop.
resource "docker_image" "nginx" {
name = "nginx"
}
resource "docker_container" "nginx" {
name = "nginx-1"
image = "${docker_image.nginx.latest}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment