Last active
June 29, 2020 13:25
-
-
Save SlootSantos/e1a00a5b3c621b34c9549499d38f2d8e to your computer and use it in GitHub Desktop.
Code following the Medium article on how to stream logs from Beanstalk Multicontainer Platform to Cloudwatch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AWSEBDockerrunVersion": 2, | |
"containerDefinitions": [ | |
{ | |
"name": "nginx", | |
"image": "nginx", | |
"essential": true, | |
"memory": 128, | |
"portMappings": [ | |
{ | |
"hostPort": 80, | |
"containerPort": 80 | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment