We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 032671d commit 1d3582dCopy full SHA for 1d3582d
1 file changed
Dockerfile
@@ -52,5 +52,5 @@ EXPOSE 8080
52
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
53
CMD curl -f http://localhost:8080/api/plugins || exit 1
54
55
-# Use gunicorn for production
56
-CMD ["gunicorn", "--bind", "0.0.0.0:8080", "--workers", "2", "--timeout", "120", "app:app"]
+# Use gunicorn with eventlet workers for SocketIO support
+CMD ["gunicorn", "--bind", "0.0.0.0:8080", "--worker-class", "eventlet", "--workers", "1", "--timeout", "120", "app:app"]
0 commit comments