2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 12:10:25 +02:00

add logspout container to production setup

This commit is contained in:
Frederik Ring 2019-09-16 15:53:16 +02:00
parent 9d59aa0527
commit 929079e360
2 changed files with 22 additions and 2 deletions

View File

@ -10,7 +10,7 @@ insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab
[{*.js,*.yml,*.md,Gopkg.toml,package.json,*.html,Dockerfile.*}]
[{*.js,*.yml,*.md,Gopkg.toml,package.json,*.html,Dockerfile.*,Dockerrun.*}]
indent_style = space
indent_size = 2

View File

@ -1,6 +1,13 @@
{
"AWSEBDockerrunVersion": 2,
"volumes": [],
"volumes": [
{
"name": "log-socket",
"host": {
"sourcePath": "/var/run/docker.sock"
}
}
],
"containerDefinitions": [
{
"name": "proxy",
@ -26,6 +33,19 @@
"image": "offen/server:stable",
"essential": true,
"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"
}
]
}
]
}