An open API service indexing awesome lists of open source software.

https://github.com/outstand/docker-syslog-ng-stdout

syslog sidecar for stdout logging
https://github.com/outstand/docker-syslog-ng-stdout

Last synced: 6 months ago
JSON representation

syslog sidecar for stdout logging

Awesome Lists containing this project

README

        

# Supported tags and respective `Dockerfile` links

- [`latest`, (*Dockerfile*)](https://github.com/outstand/docker-syslog-ng-stdout/blob/master/Dockerfile)

# Usage

Add to haproxy config:
```
log /sidecar/log local0
```

docker-compose.yml:
```yaml
version: '2'
services:
haproxy:
image: haproxy:latest
volumes_from:
- syslog-sidecar
syslog-sidecar:
image: outstand/syslog-ng-stdout:latest
```

```yaml
version: '3.0'
services:
haproxy:
image: haproxy:latest
volumes:
- syslog:/sidecar
depends_on:
- syslog-sidecar

syslog-sidecar:
image: outstand/syslog-ng-stdout:latest

volumes:
- syslog:/sidecar

volumes:
syslog:
```