Skip to content

Commit 82eaf0c

Browse files
committed
Set dashboard to listen on 0.0.0.0 for #87
1 parent 042fcf0 commit 82eaf0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mrq/dashboard/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ def api_logs():
324324

325325
def main():
326326
app.debug = True
327-
run_simple('', int(os.environ.get("PORT", 5555)), app)
327+
run_simple('0.0.0.0', int(os.environ.get("PORT", 5555)), app)
328328

329329

330330
if __name__ == '__main__':

0 commit comments

Comments
 (0)