1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/rsyslog/Dockerfile

21 lines
257 B
Docker
Raw Normal View History

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