Skip to content

Commit

Permalink
cleanup warnings on start (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
Indemnity83 authored Feb 8, 2021
1 parent 1c2d77a commit da37968
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtimes/7.4/start-container
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ chmod -R ugo+rw /.composer
if [ $# -gt 0 ];then
exec gosu $WWWUSER "$@"
else
/usr/bin/supervisord
/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
fi
1 change: 1 addition & 0 deletions runtimes/7.4/supervisord.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[supervisord]
nodaemon=true
user=root

[program:php]
command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80
Expand Down
2 changes: 1 addition & 1 deletion runtimes/8.0/start-container
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ chmod -R ugo+rw /.composer
if [ $# -gt 0 ];then
exec gosu $WWWUSER "$@"
else
/usr/bin/supervisord
/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
fi
1 change: 1 addition & 0 deletions runtimes/8.0/supervisord.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[supervisord]
nodaemon=true
user=root

[program:php]
command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80
Expand Down

0 comments on commit da37968

Please sign in to comment.