DevOps パイプラインの構築 のレビュー
65921 件のレビュー
The “Deploy Container” option has been deprecated, but the lab instructions haven’t been updated yet. In addition, there seems to be an issue with the Python Flask app—it isn’t accessible after deployment. if __name__ == "__main__": # app.run(host='0.0.0.0', port=8080, debug=True, threaded=True) port = int(os.environ.get("PORT", 8080)) # fallback to 8080 locally app.run(host='0.0.0.0', port=port, debug=True, threaded=True) And create firewall rule to allow HTTP port 80.
Liu Wenjing · 22日前にレビュー済み
Mário de Matos Josimar · 22日前にレビュー済み
Eribake Tolulope · 22日前にレビュー済み
Heggenes Amy · 22日前にレビュー済み
Kamath Rohit · 22日前にレビュー済み
This is the comment that you're looking for In case you cannot connect to VM after you created it with Docker, is due to Dockerfile opening port 80, but the Flask app runs on port 8080. So, ssh into VM, change to sudo user with sudo su -, delete the running container, create another with port binding: docker run -d -p 80:8080 <image_name>:<image_tag> . Eventually, exec into container and run again the flash app with python3 main.py. After this, do not close the ssh window, put it aside. Repeat also this step for the second VM. Good Luck
Badiu Laurentiu · 22日前にレビュー済み
Xavier Eduardo · 22日前にレビュー済み
Dobanda Bogdan · 22日前にレビュー済み
Madhuwanthe Malith · 22日前にレビュー済み
vm instance logged "network interface disabled" and TCP connections to the flask instance simply hung. I tried asking the gemini for cloud thing to help, and it complained tooling issues prevented it from checking compute engine instances, so I got no insight from there, either.
Mol Michael · 22日前にレビュー済み
Patel Rushi · 22日前にレビュー済み
Behera Tapas · 22日前にレビュー済み
Sinha Harshit · 22日前にレビュー済み
Kumar Manish · 23日前にレビュー済み
Dobanda Bogdan · 23日前にレビュー済み
Yildirim Bünny · 23日前にレビュー済み
Deroo Thomas · 23日前にレビュー済み
Abdul kabir yusuf · 23日前にレビュー済み
Le Ber Julien · 23日前にレビュー済み
GOOGLEUSER saikumar · 23日前にレビュー済み
Savage 21 · 23日前にレビュー済み
Sundar Yuvashree · 23日前にレビュー済み
The “Deploy Container” option has been deprecated, but the lab instructions haven’t been updated yet. In addition, there seems to be an issue with the Python Flask app—it isn’t accessible after deployment. if __name__ == "__main__": # app.run(host='0.0.0.0', port=8080, debug=True, threaded=True) port = int(os.environ.get("PORT", 8080)) # fallback to 8080 locally app.run(host='0.0.0.0', port=port, debug=True, threaded=True)
Liu Wenjing · 23日前にレビュー済み
Patil Shantharama · 23日前にレビュー済み
naik sridhar · 23日前にレビュー済み
公開されたレビューが、製品を購入または使用した人によるものであることは保証されません。Google はこれらのレビューの検証を行っていません。