Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paullockaby/syslog-ng
A container for running syslog-ng.
https://github.com/paullockaby/syslog-ng
containers docker syslog
Last synced: 6 days ago
JSON representation
A container for running syslog-ng.
- Host: GitHub
- URL: https://github.com/paullockaby/syslog-ng
- Owner: paullockaby
- License: apache-2.0
- Created: 2021-04-25T23:56:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-18T02:48:09.000Z (about 1 year ago)
- Last Synced: 2023-10-18T03:43:58.171Z (about 1 year ago)
- Topics: containers, docker, syslog
- Language: Makefile
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# syslog-ng
A container for running syslog-ng. This simply installs syslog-ng and lets you
configure it to run either on Docker or Kubernetes.## Running on Docker
This container expects to listen on two ports and have two mounted volumes. It
needs to listen on port 514 TCP and 514 UDP. It needs to have `/logs` mounted
and `/etc/syslog-ng` mounted.docker build -t ghcr.io/paullockaby/syslog-ng:latest .
docker run --rm -p 514:514/tcp -p 514:514/udp -v $PWD/logs:/logs -v $PWD/example:/etc/syslog-ng ghcr.io/paullockaby/syslog-ng:latestAn example configuration file for mounting into `/etc/syslog-ng` is provided
in the `example` directory.