mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
{
|
|
"AWSEBDockerrunVersion": 2,
|
|
"volumes": [
|
|
{
|
|
"name": "log-socket",
|
|
"host": {
|
|
"sourcePath": "/var/run/docker.sock"
|
|
}
|
|
}
|
|
],
|
|
"containerDefinitions": [
|
|
{
|
|
"name": "proxy",
|
|
"image": "offen/website:stable",
|
|
"essential": true,
|
|
"memory": 128,
|
|
"portMappings": [
|
|
{
|
|
"hostPort": 80,
|
|
"containerPort": 80
|
|
}
|
|
],
|
|
"dependsOn": [
|
|
{
|
|
"containerName": "server",
|
|
"condition": "START"
|
|
}
|
|
],
|
|
"links": ["server"]
|
|
},
|
|
{
|
|
"name": "server",
|
|
"image": "offen/offen:stable@sha256:87b77a8db3a3d09007e3fe01771b0c459873c7716426bc8746b5477045d38447",
|
|
"essential": true,
|
|
"memory": 256,
|
|
"command": ["serve"]
|
|
},
|
|
{
|
|
"name": "logspout",
|
|
"image": "gliderlabs/logspout:latest",
|
|
"essential": true,
|
|
"memory": 64,
|
|
"command": ["syslog+tls://$LOG_TARGET"],
|
|
"mountPoints": [
|
|
{
|
|
"sourceVolume": "log-socket",
|
|
"containerPath": "/var/run/docker.sock"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|