Skip to content

Instantly share code, notes, and snippets.

@jamesmishra
Created February 8, 2021 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesmishra/0d685ae943b99b05429a261bf8cafcaf to your computer and use it in GitHub Desktop.
Save jamesmishra/0d685ae943b99b05429a261bf8cafcaf to your computer and use it in GitHub Desktop.
An example of deploying a Docker container to Provose
containers = {
hello = {
image = {
name = "nginxdemos/hello"
tag = "latest"
private_registry = false
}
public = {
https = {
internal_http_port = 80
internal_http_health_check_path = "/"
public_dns_names = ["hello.example.com"]
}
}
instances = {
instance_type = "FARGATE"
container_count = 1
cpu = 256
memory = 512
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment