mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
696264bee9
This commit fixes issue #6895 by running logrotate with user 10000 Signed-off-by: Wenkai Yin <yinw@vmware.com>
30 lines
964 B
Docker
30 lines
964 B
Docker
FROM photon:2.0
|
|
|
|
RUN tdnf install -y cronie rsyslog logrotate shadow tar gzip sudo >> /dev/null\
|
|
&& mkdir /var/spool/rsyslog \
|
|
&& groupadd -r -g 10000 syslog && useradd --no-log-init -r -g 10000 -u 10000 syslog \
|
|
&& tdnf clean all
|
|
|
|
COPY ./make/photon/log/rsyslog.conf /etc/rsyslog.conf
|
|
|
|
# rsyslog configuration file for docker
|
|
COPY ./make/photon/log/rsyslog_docker.conf /etc/rsyslog.d/
|
|
|
|
# remove the original "logrotate" in directory "/etc/cron.daily/"
|
|
# and copy the customized one to directory "/etc/cron.hourly/"
|
|
# to run logrotate hourly
|
|
RUN rm /etc/cron.daily/logrotate
|
|
COPY ./make/photon/log/logrotate /etc/cron.hourly/
|
|
|
|
COPY ./make/photon/log/start.sh /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/start.sh /etc/rsyslog.d/ && \
|
|
chown -R 10000:10000 /etc/rsyslog.conf /etc/rsyslog.d/ /run /var/lib/logrotate/
|
|
|
|
HEALTHCHECK CMD netstat -ltun|grep 10514
|
|
|
|
VOLUME /var/log/docker/ /run/ /etc/logrotate.d/
|
|
|
|
EXPOSE 10514
|
|
|
|
CMD /usr/local/bin/start.sh
|