mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
32 lines
574 B
JSON
32 lines
574 B
JSON
|
{
|
||
|
"AWSEBDockerrunVersion": 2,
|
||
|
"volumes": [],
|
||
|
"containerDefinitions": [
|
||
|
{
|
||
|
"name": "proxy",
|
||
|
"image": "offen/proxy:latest",
|
||
|
"essential": true,
|
||
|
"memory": 128,
|
||
|
"portMappings": [
|
||
|
{
|
||
|
"hostPort": 80,
|
||
|
"containerPort": 80
|
||
|
}
|
||
|
],
|
||
|
"dependsOn": [
|
||
|
{
|
||
|
"containerName": "server",
|
||
|
"condition": "START"
|
||
|
}
|
||
|
],
|
||
|
"links": ["server"]
|
||
|
},
|
||
|
{
|
||
|
"name": "server",
|
||
|
"image": "offen/server:latest",
|
||
|
"essential": true,
|
||
|
"memory": 128
|
||
|
}
|
||
|
]
|
||
|
}
|