ensuring that container can run read-only and logs are forwarded to docker logs, fixes for latest alpine and cleanup

This commit is contained in:
El RIDO
2018-06-05 06:55:45 +02:00
parent d8a9f45cb2
commit cf7d8e1e48
7 changed files with 49 additions and 31 deletions

View File

@@ -1,8 +1,19 @@
[supervisord]
nodaemon=true
pidfile=/var/run/supervisord.pid
logfile=/var/log/supervisord.log
[program:php-fpm]
command=php-fpm7 --nodaemonize
command=php-fpm7
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:nginx]
command=nginx
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0