fix: Bind Flask to 0.0.0.0 for Docker external access
This commit is contained in:
parent
babebc6b82
commit
8baf0f0d4c
1 changed files with 1 additions and 1 deletions
2
app.py
2
app.py
|
|
@ -1430,4 +1430,4 @@ if __name__ == '__main__':
|
|||
print("\033[32m" + f"http://127.0.0.1:{port_sever}" + "\033[0m", flush=True)
|
||||
|
||||
# sever_flare(port_sever, "cXPggKvHuW:sdvn:1231")
|
||||
app.run(debug=True, port=port_sever)
|
||||
app.run(debug=True, host='0.0.0.0', port=port_sever)
|
||||
|
|
|
|||
Loading…
Reference in a new issue