chore(docker): 不需要的docker设置取消

This commit is contained in:
2026-01-05 15:55:11 +08:00
parent e41b47cb62
commit d435aaf4a8
18 changed files with 464 additions and 281 deletions

View File

@@ -6,15 +6,6 @@ logfile_backups=10
loglevel=info
pidfile=/var/run/supervisord.pid
[program:php-permission-change]
command=/bin/bash -c "sleep 15 && /usr/local/bin/entrypoint.sh"
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
stdout_logfile=/var/log/supervisor/php-permission-change.log
stderr_logfile=/var/log/supervisor/php-permission-change-error.log
[program:php-fpm]
command=php-fpm
autostart=true
@@ -47,11 +38,11 @@ startsecs=3
stopwaitsecs=10
[program:websocket-server]
command=php ./ws_server.php
command=/bin/bash -c "if [ -f /var/www/html/ws_server.php ]; then php ./ws_server.php; else echo 'ws_server.php not found, skipping websocket server'; fi"
workdir=/var/www/html
autostart=true
autorestart=true
startretries=3
autorestart=false
startretries=0
stdout_logfile=/var/log/supervisor/websocket-server.log
stdout_logfile_maxbytes=10MB
stdout_logfile_backups=10