Commit 97f573c4 authored by marblepebble's avatar marblepebble Committed by GitHub

Set ipv4 address explicitly for docker usage

parent 15895f40
......@@ -3094,5 +3094,5 @@ def upload():
def start_gevent():
from gevent.wsgi import WSGIServer
global gevent_server
gevent_server = WSGIServer(('', ub.config.config_port), app)
gevent_server = WSGIServer(('0.0.0.0', ub.config.config_port), app)
gevent_server.serve_forever()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment