Docker環境のgpt-code-ui-docker構築メモ
Docker環境でgpt-code-ui-dockerを構築しようと、上手くいかず時間を無駄にしたためメモしておく。
gpt-code-ui-dockerとは
詳細は割愛しますが、ChatGPTの機能であるCode InterpreterをAPIで使用できるものです。
以下参照下さい。
https://ricklamers.io/posts/gpt-code/
発生した事象
docker-compose.yamlの修正後、docker-compose upで起動したところ以下のエラーが発生
"Port 8080 is in use by another program. Either identify and stop that program, or start the server with a different port."
#解決方法
docker-compose.yamlにWEB_PORTを記述
WEB_PORT:XXXX
githubのコミュニティにも質問が出ておりました。。
https://github.com/localagi/gpt-code-ui-docker/issues/1
反省
ハマったときは直ぐにコミュニティ確認すること。
Dockerの構成を今一度勉強します。