2
0
mirror of https://github.com/offen/website.git synced 2024-10-19 04:20:28 +02:00
website/Dockerrun.aws.json.staging

33 lines
668 B
Plaintext
Raw Normal View History

2019-09-14 14:30:00 +02:00
{
"AWSEBDockerrunVersion": 2,
"volumes": [],
"containerDefinitions": [
{
"name": "proxy",
"image": "offen/website:latest",
2019-09-14 14:30:00 +02:00
"essential": true,
"memory": 128,
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
],
"dependsOn": [
{
"containerName": "server",
"condition": "START"
}
],
"links": ["server"]
},
{
"name": "server",
"image": "offen/offen@sha256:fe55ba1c183eb8bb4dd19143e6fe1133d6d3b9115c94cc2150620b27adef18fc",
2019-09-14 14:30:00 +02:00
"essential": true,
2019-10-10 09:40:39 +02:00
"memory": 256,
"command": ["serve"]
2019-09-14 14:30:00 +02:00
}
]
}