diff options
author | Alexandre Flament <alex@al-f.net> | 2022-03-19 12:27:46 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2022-03-19 13:47:45 +0100 |
commit | 12d3fe32147d43446fa6d7fcd56252eebac5ecb4 (patch) | |
tree | 0fb1e00201b6dcf96e79b54d464b745599c5adea /Dockerfile | |
parent | 6ccd557650a0892a3c59ac157a781f9a12beb56e (diff) | |
download | searxng-12d3fe32147d43446fa6d7fcd56252eebac5ecb4.tar.gz searxng-12d3fe32147d43446fa6d7fcd56252eebac5ecb4.zip |
docker: log to stdout
previously the log (only the exceptions) were log
into /var/log/uwsgi/uwsgi.log
this is disturbing for the admins:
* they see an internal error on HTTP port
* no log where they are expected (docker logs)
this commit fixes this issue
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index ce74af1d4..6932c595c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ ENTRYPOINT ["/sbin/tini","--","/usr/local/searxng/dockerfiles/docker-entrypoint. EXPOSE 8080 VOLUME /etc/searx VOLUME /etc/searxng -VOLUME /var/log/uwsgi ARG SEARXNG_GID=977 ARG SEARXNG_UID=977 |