diff --git a/ai/ai-server.container b/ai/ai-server.container index ff34620..bc5ec66 100644 --- a/ai/ai-server.container +++ b/ai/ai-server.container @@ -8,7 +8,7 @@ ContainerName=ai-server EnvironmentFile=%h/.config/containers/ai.env Environment=PORT=3100 Environment=SHODH_URL=http://localhost:3030 -Image=ghcr.io/hoornet/home-mind-server:latest +Image=localhost/home-mind-server:latest Pod=ai.pod Volume=ai-conversation-data.volume:/data diff --git a/ai/ai-shodh.container b/ai/ai-shodh.container index 11e9ef8..36bb36c 100644 --- a/ai/ai-shodh.container +++ b/ai/ai-shodh.container @@ -8,7 +8,7 @@ ContainerName=ai-shodh EnvironmentFile=%h/.config/containers/ai.env Environment=SHODH_HOST=0.0.0.0 Environment=SHODH_PORT=3030 -Image=ghcr.io/hoornet/home-mind-shodh:latest +Image=localhost/home-mind-shodh:latest Pod=ai.pod Volume=ai-shodh-data.volume:/data diff --git a/ai/ai.pod b/ai/ai.pod index ab3f494..63a71a8 100644 --- a/ai/ai.pod +++ b/ai/ai.pod @@ -6,6 +6,7 @@ PodName=ai Network=ai.network PublishPort=3030:3030 PublishPort=3100:3100 +PublishPort=8081:8080 [Install] WantedBy=default.target diff --git a/ai/openwebui-data.volume b/ai/openwebui-data.volume new file mode 100644 index 0000000..1a6723e --- /dev/null +++ b/ai/openwebui-data.volume @@ -0,0 +1,2 @@ +[Volume] +VolumeName=openwebui-data diff --git a/ai/openwebui.container b/ai/openwebui.container new file mode 100644 index 0000000..2cab621 --- /dev/null +++ b/ai/openwebui.container @@ -0,0 +1,18 @@ +[Unit] +Description=Open WebUI + +[Container] +AutoUpdate=registry +ContainerName=openwebui +Environment=OLLAMA_BASE_URL=http://10.0.20.2:11434 +Environment=TZ=Europe/Berlin +GroupAdd=keep-groups +Image=ghcr.io/open-webui/open-webui:main +Volume=openwebui-data.volume:/app/backend/data +Pod=ai.pod + +[Service] +Restart=always + +[Install] +WantedBy=default.target