changes that allows to see container on host pc

This commit is contained in:
Norvicdev 2026-08-04 16:48:56 +03:00
parent ae54f81717
commit 60d5d51eca

View file

@ -9,4 +9,5 @@ def hello_world(): # put application's code here
if __name__ == '__main__':
app.run()
# host='0.0.0.0' для доступа извне контейнера
app.run(host='0.0.0.0', port=5000, debug=False)