1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-04 10:34:49 +02:00
dockerfiles/rsyslog/Dockerfile

21 lines
257 B
Docker
Raw Normal View History

2016-10-29 10:12:00 +02:00
#
# Dockerfile for rsyslog
#
FROM alpine
2017-05-08 01:05:07 +02:00
MAINTAINER kev <noreply@easypi.pro>
2016-10-29 10:12:00 +02:00
2018-07-28 11:34:05 +02:00
RUN apk add --no-cache rsyslog
COPY rsyslog.conf /etc/rsyslog.conf
2016-10-29 10:12:00 +02:00
VOLUME /var/log
2016-10-29 10:22:21 +02:00
WORKDIR /var/log
2016-10-29 10:12:00 +02:00
2018-07-28 11:07:09 +02:00
ENV TZ=UTC
2016-10-29 10:12:00 +02:00
EXPOSE 514/tcp \
514/udp
ENTRYPOINT ["rsyslogd", "-n"]