Open WebUI 설치
github 위치: https://github.com/open-webui/open-webui
readme 파일의 도커 실행 명령을 진행합니다.
docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
실행후
PS C:\Users\ntyou> docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
Unable to find image 'ghcr.io/open-webui/open-webui:main' locally
main: Pulling from open-webui/open-webui
2cc3ae149d28: Already exists
87c0edd565e2: Pull complete
3df7545512d5: Pull complete
8f26d42ebf67: Pull complete
8951c7adce45: Pull complete
e68b3f3b28fc: Pull complete
4f4fb700ef54: Pull complete
04910e925ba2: Pull complete
e00576178709: Pull complete
7b74341f8bd7: Pull complete
46aff8bb649e: Pull complete
d2f7110849c1: Pull complete
293258db973c: Pull complete
5267614e0fff: Pull complete
ed7eecbb61eb: Pull complete
97b36ceb575c: Pull complete
Digest: sha256:374776656904d937b4b313e4a05303d7c462860c0f5cf16fca9056fa9b9f2320
Status: Downloaded newer image for ghcr.io/open-webui/open-webui:main
d5bc5ea71b25077ff852ddf43f3d262e0c8c51fddd25f9abe21ed6e6fdb85170
PS C:\Users\ntyou>
도커 파라메터 설
- run : 컨테이너 실행
- -d : 데몬형식으로 백그라운드에서 작동
- --net=host :
- -v open: 컨테이너 중지시에도 볼륨에 저장
- --restart : 재실행기
설치를 진행하며 도커가 실행
PS C:\Users\ntyou> docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
d5bc5ea71b25 ghcr.io/open-webui/open-webui:main "bash start.sh" 49 seconds ago Up 48 seconds (healthy) 0.0.0.0:3000->8080/tcp open-webui
PS C:\Users\ntyou>
실행 화면입니다. (http://localhost:3000/ 접속)
'AI' 카테고리의 다른 글
머신러닝이란 무엇인가? (0) | 2024.06.29 |
---|---|
ChatGPT는 TensorFlow를 사용합니까? (0) | 2024.06.29 |
텐서플로란? TensorFlow란 무엇인가? (0) | 2024.06.29 |
LangChain 지원모델 (0) | 2024.06.26 |
RAG 기초 (0) | 2024.06.26 |