From 833be826e909633f6409a4f9f8e0809bda6a59cd Mon Sep 17 00:00:00 2001 From: b3yond Date: Sun, 9 Jun 2019 11:56:10 +0200 Subject: [PATCH] fixed a bug with the docker deployment --- ticketfrei/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ticketfrei/frontend.py b/ticketfrei/frontend.py index 52ee5e1..dbd68e7 100755 --- a/ticketfrei/frontend.py +++ b/ticketfrei/frontend.py @@ -275,6 +275,6 @@ application = bottle.default_app() bottle.install(SessionPlugin('/')) 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: application.catchall = False