Sha256: 32302d405088b7cc65a52383f6db83c3a1b5e2d900181a7b5b4c260848d235f5
Contents?: true
Size: 1.45 KB
Versions: 51
Compression:
Stored size: 1.45 KB
Contents
{ "family": "console-sample-app-static", "containerDefinitions": [ { "name": "simple-app", "image": "httpd:2.4", "cpu": 10, "memory": 300, "environment": [], "portMappings": [ { "hostPort": 80, "containerPort": 80 } ], "volumesFrom": [], "links": [], "mountPoints": [ { "sourceVolume": "my-vol", "containerPath": "/usr/local/apache2/htdocs" } ], "essential": true }, { "name": "busybox", "image": "busybox", "cpu": 10, "memory": 200, "entryPoint": [ "sh", "-c" ], "environment": [], "command": [ "/bin/sh -c \"while true; do echo '<html> <head> <title>Amazon ECS Sample App</title> <style>body {margin-top: 40px; background-color: #333;} </style> </head><body> <div style=color:white;text-align:center> <h1>Amazon ECS Sample App</h1> <h2>Congratulations!</h2> <p>Your application is now running on a container in Amazon ECS.</p>' > top; /bin/date > date ; echo '</div></body></html>' > bottom; cat top date bottom > /usr/local/apache2/htdocs/index.html ; sleep 1; done\"" ], "portMappings": [], "volumesFrom": [ { "sourceContainer": "simple-app" } ], "links": [], "mountPoints": [], "essential": false } ], "volumes": [ { "name": "my-vol", "host": {} } ] }
Version data entries
51 entries across 49 versions & 3 rubygems