Redirect NGINX logs to stdout/stderr for Docker to collect
This commit is contained in:
parent
52d346a66e
commit
046dd4b32d
|
@ -1,6 +1,9 @@
|
|||
FROM alpine:3.12
|
||||
|
||||
RUN apk add --no-cache nginx nginx-mod-rtmp && mkdir -p /etc/nginx/streams.d
|
||||
RUN apk add --no-cache nginx nginx-mod-rtmp; \
|
||||
mkdir -p /etc/nginx/streams.d; \
|
||||
ln -sf /dev/stdout /var/log/nginx/access.log; \
|
||||
ln -sf /dev/stderr /var/log/nginx/error.log
|
||||
|
||||
COPY docker-entrypoint.sh /
|
||||
COPY rtmp.conf /etc/nginx/modules/
|
||||
|
|
Loading…
Reference in New Issue