try supervisord

This commit is contained in:
Tim Bendt
2025-11-29 15:21:22 -05:00
parent 19c08ffaa1
commit 9027fe6b1d
3 changed files with 30 additions and 2 deletions

View File

@@ -39,7 +39,13 @@ COPY . .
RUN composer dump-autoload --optimize
# Copy nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/sites-available/default
# Copy supervisor configuration
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
# Create necessary directories
RUN mkdir -p /var/log/supervisor
# Expose port
EXPOSE 80