1
0
Fork 0
terraform-training/10_docker/base.tf

17 lines
261 B
Terraform
Raw Normal View History

2020-05-15 11:28:45 +02:00
provider "docker" {
host = "ssh://ubuntu@3.9.10.22:22"
}
resource "docker_image" "nginx" {
name = "nginx:latest"
}
resource "docker_container" "web" {
name = "foo"
image = docker_image.nginx.latest
ports {
internal = 80
external = 80
}
}