Skip to content
This repository was archived by the owner on Apr 18, 2020. It is now read-only.

Commit 9929c79

Browse files
committed
Make log output less noisy by default
1 parent af764be commit 9929c79

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
ARG ALPINE_VERSION=latest
22
FROM alpine:$ALPINE_VERSION
3-
MAINTAINER Stephen Coakley <me@stephencoakley.com>
43

54
RUN apk --no-cache upgrade && \
65
apk --no-cache add s6 && \
@@ -9,3 +8,4 @@ RUN apk --no-cache upgrade && \
98
COPY root /
109

1110
ENTRYPOINT ["/sbin/init"]
11+
CMD ["/bin/sh"]

base/root/etc/service/crond/run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/execlineb -P
2-
crond -f -d6
1+
#!/bin/sh
2+
exec crond -f -d ${CRON_LOG_LEVEL-9}

base/root/etc/service/syslog/run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/execlineb -P
2-
syslogd -n -O -
1+
#!/bin/sh
2+
exec syslogd -n -l ${SYSLOG_LEVEL-6} -O -

0 commit comments

Comments
 (0)