Workflow update

pull/2/head
technorabilia 3 years ago
parent b532fff381
commit b1d4ac895d

@ -0,0 +1,30 @@
# [syslog-ng](https://www.syslog-ng.com/products/open-source-log-management/)
# allows you to flexibly collect, parse, classify, rewrite and correlate logs
# from across your infrastructure and store or route them to log analysis tools.
---
version: "2.1"
services:
syslog-ng:
image: ghcr.io/linuxserver/syslog-ng
container_name: syslog-ng
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Stores config and application files
- ${BASEDIR:-/volume1/docker}/syslog-ng/config:/config
# Stores logs collected by the syslog-ng service
- ${BASEDIR:-/volume1/docker}/syslog-ng/var/log:/var/log # optional
ports:
# Syslog UDP
- 514:5514
# Syslog TCP
- 601:6601
# Syslog TLS
- 6514:6514
restart: unless-stopped

@ -0,0 +1,17 @@
# [syslog-ng](https://www.syslog-ng.com/products/open-source-log-management/)
# allows you to flexibly collect, parse, classify, rewrite and correlate logs
# from across your infrastructure and store or route them to log analysis tools.
source ./.env
docker run -d \
--name=syslog-ng \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 514:5514 `# Syslog UDP` \
-p 601:6601 `# Syslog TCP` \
-p 6514:6514 `# Syslog TLS` \
-v ${BASEDIR:-/volume1/docker}/syslog-ng/config:/config `# Stores config and application files` \
-v ${BASEDIR:-/volume1/docker}/syslog-ng/var/log:/var/log `# optional` `# Stores logs collected by the syslog-ng service` \
--restart unless-stopped \
ghcr.io/linuxserver/syslog-ng

@ -0,0 +1,4 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/syslog-ng/config
mkdir -p ${BASEDIR:-/volume1/docker}/syslog-ng/var/log `#optional`
Loading…
Cancel
Save