expose more ports

This commit is contained in:
2026-03-24 16:13:57 -07:00
parent 2b7d14eb5b
commit ec2fd3ac06
2 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# ---------- Dockerfile ----------
# Base image PHP + Apache
# Base image - PHP + Apache
FROM php:apache
# Install Python, NGINX, Supervisor and pip
@ -26,7 +26,7 @@ COPY apache_vhost.conf /etc/apache2/sites-available/000-default.conf
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
# Expose the ports you care about
EXPOSE 80
EXPOSE 80, 8080, 5000
# Start Supervisor
CMD ["/usr/bin/supervisord", "-n"]