revert(logs): remove nginx logs forward for privacy purposes

This commit is contained in:
Junior L. Botelho (JLB) 2023-02-19 07:41:51 -03:00
parent d56c3632b1
commit acddc5faf1
No known key found for this signature in database
GPG Key ID: 6A25840754F2A524
1 changed files with 0 additions and 4 deletions

View File

@ -1,9 +1,5 @@
# Install Nginx with FastCGI enabled, optimizing its performance for serving content
RUN apk add nginx
# forward request and error logs to docker log collector
RUN ln -sf "/dev/stdout" "/var/log/nginx/access.log" &&\
ln -sf "/dev/stderr" "/var/log/nginx/error.log"
# After executing the 'docker run' command, run the 'prepare.sh' script
CMD [ "/bin/sh", "-c", "docker/server/prepare.sh" ]