mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
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"],
|
|
"logConfiguration": {
|
|
"logDriver": "awslogs",
|
|
"options": {
|
|
"awslogs-create-group": true,
|
|
"awslogs-group": "proxy",
|
|
"awslogs-region": "eu-central-1",
|
|
"awslogs-stream-prefix": "staging"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "server",
|
|
"image": "offen/offen@sha256:4c0d2d5db9bc749d21ad8659008658bf25318074b7c813b0a694e64816df750d",
|
|
"essential": true,
|
|
"memory": 256,
|
|
"command": ["serve"],
|
|
"environment": [
|
|
{ "name": "OFFEN_SERVER_REVERSEPROXY", "value": "1" }
|
|
],
|
|
"logConfiguration": {
|
|
"logDriver": "awslogs",
|
|
"options": {
|
|
"awslogs-create-group": true,
|
|
"awslogs-group": "server",
|
|
"awslogs-region": "eu-central-1",
|
|
"awslogs-stream-prefix": "staging"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|