Skip to content

Commit

Permalink
Merge pull request #225 from VisLab/develop
Browse files Browse the repository at this point in the history
Another try at gunicorn configuration
  • Loading branch information
VisLab authored Oct 3, 2024
2 parents 87c8327 + d509836 commit f335cbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy_hed/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ ENV HEDTOOLS_CONFIG_CLASS=config.ProductionConfig
EXPOSE 33000

# Run the Flask application with Gunicorn, binding to port 33000
CMD ["gunicorn", "-w", "4", "-b", "127.0.0.1:33000", "runserver:app"]
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:33000", "runserver:app"]
2 changes: 1 addition & 1 deletion deploy_hed_dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ ENV HEDTOOLS_CONFIG_CLASS=config.ProductionConfig
EXPOSE 33004

# Run the Flask application with Gunicorn, binding to port 33004
CMD ["gunicorn", "-w", "4", "-b", "127.0.0.1:33004", "runserver:app"]
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:33004", "runserver:app"]

0 comments on commit f335cbe

Please sign in to comment.