fixed a bug with the docker deployment
This commit is contained in:
parent
7ef8c3e197
commit
833be826e9
|
@ -275,6 +275,6 @@ application = bottle.default_app()
|
||||||
bottle.install(SessionPlugin('/'))
|
bottle.install(SessionPlugin('/'))
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
bottle.run(host=config["web"]["host"], port=config["web"]["port"])
|
bottle.run(host="0.0.0.0", port=config["web"]["port"])
|
||||||
else:
|
else:
|
||||||
application.catchall = False
|
application.catchall = False
|
||||||
|
|
Loading…
Reference in a new issue