diff --git a/README.md b/README.md index 8489dc9..2acace5 100644 --- a/README.md +++ b/README.md @@ -540,6 +540,7 @@ A collection of delicious docker recipes. - [x] amancevice/superset - [x] matrixdotorg/synapse - [x] syncthing/syncthing +- [x] linuxserver/syslog-ng - [x] tensorflow - [x] serving - [x] kitabisa/teler diff --git a/syslog-ng/README.md b/syslog-ng/README.md new file mode 100644 index 0000000..15550d3 --- /dev/null +++ b/syslog-ng/README.md @@ -0,0 +1,8 @@ +syslog-ng +========= + +[syslog-ng][1] allows you to flexibly collect, parse, classify, rewrite and +correlate logs from across your infrastructure and store or route them to log +analysis tools. + +[1]: https://docs.linuxserver.io/images/docker-syslog-ng/ diff --git a/syslog-ng/docker-compose.yml b/syslog-ng/docker-compose.yml new file mode 100644 index 0000000..0dd2324 --- /dev/null +++ b/syslog-ng/docker-compose.yml @@ -0,0 +1,16 @@ +services: + syslog-ng: + image: linuxserver/syslog-ng:4.8.1 + ports: + - 514:5514/udp # UDP + - 601:6601/tcp # TCP + - 6514:6514/tcp # TLS + volumes: + - ./data/etc:/config + - ./data/log:/var/log + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - LOG_TO_STDOUT= #optional + restart: unless-stopped