Skip to content

Instantly share code, notes, and snippets.

@jerowe
Created January 26, 2019 13:41
Show Gist options
  • Save jerowe/b546654b760a3be1beb437fbc8aca3d6 to your computer and use it in GitHub Desktop.
Save jerowe/b546654b760a3be1beb437fbc8aca3d6 to your computer and use it in GitHub Desktop.
deploy-python-flask-docker-series-Dockerrun.aws.json
{
"AWSEBDockerrunVersion": 2,
"volumes": [
],
"containerDefinitions": [
{
"name": "flask-app-server",
"image": "quay.io/jerowe/flask-app-server:latest",
"update": true,
"essential": true,
"memory": 400,
"environment": [
],
"mountPoints": [
],
"portMappings": [
{
"hostPort": 80,
"containerPort": 5000
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment