Skip to content

Instantly share code, notes, and snippets.

@psoto
Last active October 3, 2016 18:50
Show Gist options
  • Save psoto/03f74c848c58d92c26e9b35e3c9d14ae to your computer and use it in GitHub Desktop.
Save psoto/03f74c848c58d92c26e9b35e3c9d14ae to your computer and use it in GitHub Desktop.

Revisions

  1. psoto revised this gist Oct 3, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Dockerrun.aws.json
    Original file line number Diff line number Diff line change
    @@ -3,7 +3,7 @@
    "containerDefinitions": [
    {
    "name": "worker-container-name",
    "image": "worker",
    "image": "worker-image-path",
    "memory": 1024,
    "portMappings": [
    {
  2. psoto revised this gist Oct 3, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Dockerrun.aws.json
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@
    {
    "name": "worker-container-name",
    "image": "worker",
    "memory": 128,
    "memory": 1024,
    "portMappings": [
    {
    "hostPort": 80,
  3. psoto revised this gist Oct 3, 2016. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions Dockerrun.aws.json
    Original file line number Diff line number Diff line change
    @@ -2,8 +2,8 @@
    "AWSEBDockerrunVersion": 2,
    "containerDefinitions": [
    {
    "name": "worker-name",
    "image": image_name,
    "name": "worker-container-name",
    "image": "worker",
    "memory": 128,
    "portMappings": [
    {
  4. psoto created this gist Sep 13, 2016.
    16 changes: 16 additions & 0 deletions Dockerrun.aws.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    {
    "AWSEBDockerrunVersion": 2,
    "containerDefinitions": [
    {
    "name": "worker-name",
    "image": image_name,
    "memory": 128,
    "portMappings": [
    {
    "hostPort": 80,
    "containerPort": 8000
    }
    ],
    },
    ]
    }