Skip to content

Commit

Permalink
fix: Make limit fd by defautl
Browse files Browse the repository at this point in the history
  • Loading branch information
TomBursch committed Dec 2, 2024
1 parent 5686cfe commit 4d65094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ ENV DEBUG='False'

RUN chmod u+x ./entrypoint.sh

CMD ["--ini", "wsgi.ini:web", "--gevent", "200"]
CMD ["--ini", "wsgi.ini:web", "--gevent", "200", "--max-fd", "1048576"]
ENTRYPOINT ["./entrypoint.sh"]

EXPOSE 8080
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ ENV DEBUG='False'

RUN chmod u+x ./entrypoint.sh

CMD ["wsgi.ini", "--gevent", "200"]
CMD ["wsgi.ini", "--gevent", "200", "--max-fd", "1048576"]
ENTRYPOINT ["./entrypoint.sh"]

0 comments on commit 4d65094

Please sign in to comment.