2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/Dockerrun.aws.json.production

52 lines
1002 B
Plaintext
Raw Normal View History

2019-09-09 20:01:22 +02:00
{
"AWSEBDockerrunVersion": 2,
"volumes": [
{
"name": "log-socket",
"host": {
"sourcePath": "/var/run/docker.sock"
}
}
],
2019-09-09 20:01:22 +02:00
"containerDefinitions": [
{
"name": "proxy",
2019-09-11 12:44:51 +02:00
"image": "offen/proxy:stable",
2019-09-09 20:01:22 +02:00
"essential": true,
"memory": 128,
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
],
"dependsOn": [
{
"containerName": "server",
"condition": "START"
}
],
"links": ["server"]
},
{
"name": "server",
2019-10-10 09:25:16 +02:00
"image": "offen/offen:stable",
2019-09-09 20:01:22 +02:00
"essential": true,
2019-09-11 12:44:51 +02:00
"memory": 256
},
{
"name": "logspout",
"image": "gliderlabs/logspout:latest",
"essential": true,
"memory": 64,
"command": ["syslog+tls://$LOG_TARGET"],
"mountPoints": [
{
"sourceVolume": "log-socket",
"containerPath": "/var/run/docker.sock"
}
]
2019-09-09 20:01:22 +02:00
}
]
}