fix: change port to 3000 to match Dokploy settings
This commit is contained in:
@@ -7,9 +7,8 @@ WORKDIR /app
|
|||||||
# Set permissions
|
# Set permissions
|
||||||
RUN chown -R www-data:www-data /app
|
RUN chown -R www-data:www-data /app
|
||||||
|
|
||||||
# Expose port 8080
|
# Expose port 3000 (matching Dokploy configuration)
|
||||||
EXPOSE 8080
|
EXPOSE 3000
|
||||||
|
|
||||||
# Start the built-in PHP server on port 8080 (listening on all interfaces)
|
# Start the built-in PHP server on port 3000 (listening on all interfaces)
|
||||||
# We use -t /app to set the document root
|
CMD ["php", "-S", "0.0.0.0:3000", "-t", "/app"]
|
||||||
CMD ["php", "-S", "0.0.0.0:8080", "-t", "/app"]
|
|
||||||
|
|||||||
Reference in New Issue
Block a user