Skip to content

Instantly share code, notes, and snippets.

@stevenfrst
Created April 28, 2019 12:02
Show Gist options
  • Save stevenfrst/8e20133941553aeaae663daea272b3ac to your computer and use it in GitHub Desktop.
Save stevenfrst/8e20133941553aeaae663daea272b3ac to your computer and use it in GitHub Desktop.
resource "docker_image" "httpd" {
name = "httpd"
}
resource "docker_container" "httpd" {
name = "httpd-2"
image = "${docker_image.httpd.latest}"
ports {
internal = 80
external = 8282
}
volumes {
host_path = "/data/web"
container_path = "/usr/local/apache2/htdocs/"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment