We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c363b9a commit ec02f07Copy full SHA for ec02f07
Dockerfile
@@ -8,8 +8,7 @@ RUN \
8
yum update -y && \
9
yum clean all && \
10
11
- easy_install supervisor && \
12
- mkdir -p /etc/supervisord.d /var/log/supervisor
+ easy_install supervisor
13
14
# Add supervisord conf, bootstrap.sh files
15
ADD container-files /
container-files/etc/supervisord.conf
@@ -1,6 +1,7 @@
1
[supervisord]
2
pidfile = /var/run/supervisord.pid
3
-logfile = NONE
+# It seems that it's not possible to swith this log to NONE (it creates NONE logfile)
4
+logfile = /data/logs/supervisord.log
5
# Set loglevel=debug, only then all logs from child services are printed out
6
# to container logs (and thus available via `docker logs [container]`
7
loglevel = debug
0 commit comments