mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
33 lines
603 B
Plaintext
33 lines
603 B
Plaintext
{
|
|
"AWSEBDockerrunVersion": 2,
|
|
"volumes": [],
|
|
"containerDefinitions": [
|
|
{
|
|
"name": "proxy",
|
|
"image": "offen/website:latest",
|
|
"essential": true,
|
|
"memory": 128,
|
|
"portMappings": [
|
|
{
|
|
"hostPort": 80,
|
|
"containerPort": 80
|
|
}
|
|
],
|
|
"dependsOn": [
|
|
{
|
|
"containerName": "server",
|
|
"condition": "START"
|
|
}
|
|
],
|
|
"links": ["server"]
|
|
},
|
|
{
|
|
"name": "server",
|
|
"image": "offen/offen:latest",
|
|
"essential": true,
|
|
"memory": 256,
|
|
"command": ["serve"]
|
|
}
|
|
]
|
|
}
|