[docker-database] Add missing '%' in '%syslogtag%' (#2434)

This commit is contained in:
Joe LeVeque 2019-01-11 17:46:32 -08:00 committed by lguohan
parent c6dfbd82d2
commit 46fd322877

View File

@ -1,7 +1,7 @@
FROM docker-config-engine
ARG docker_container_name
RUN [ -f /etc/rsyslog.conf ] && sed -ri "s/%syslogtag%/$docker_container_name#syslogtag%/;" /etc/rsyslog.conf
RUN [ -f /etc/rsyslog.conf ] && sed -ri "s/%syslogtag%/$docker_container_name#%syslogtag%/;" /etc/rsyslog.conf
# Make apt-get non-interactive
ENV DEBIAN_FRONTEND=noninteractive