Files
syslog-ng-server/Dockerfile
Wolfgang Hottgenroth 04f9e48d16
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed
fix Dockerfile
2026-02-19 12:45:10 +01:00

18 lines
317 B
Docker

FROM alpine:3.22.2
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName=""
RUN \
apk add --no-cache syslog-ng
COPY syslog-ng.conf /etc/syslog-ng
RUN mkdir -p /var/log/remote
VOLUME /var/log/remote
EXPOSE 514/udp
CMD [ "/usr/sbin/syslog-ng", "-f", "/etc/syslog-ng/syslog-ng.conf", "-F" ]