mirror of
https://github.com/open-webui/open-webui
synced 2025-04-05 05:10:46 +00:00
branded with text
This commit is contained in:
parent
99ea6c9bb1
commit
6f5fcc2a50
@ -1,19 +1,19 @@
|
|||||||
steps:
|
steps:
|
||||||
# Build the container image
|
# Build the container image
|
||||||
- name: 'gcr.io/cloud-builders/docker'
|
- name: 'gcr.io/cloud-builders/docker'
|
||||||
args: ['build', '-t', 'us-central1-docker.pkg.dev/ceylonally/ghcr/open-webui/open-webui:$COMMIT_SHA', '.']
|
args: ['build', '-t', 'us-central1-docker.pkg.dev/ceylonally/ghcr/ceylon-ally/ceylon-ally:$COMMIT_SHA', '.']
|
||||||
# Push the container image
|
# Push the container image
|
||||||
- name: 'gcr.io/cloud-builders/docker'
|
- name: 'gcr.io/cloud-builders/docker'
|
||||||
args: ['push', 'us-central1-docker.pkg.dev/ceylonally/ghcr/open-webui/open-webui:$COMMIT_SHA']
|
args: ['push', 'us-central1-docker.pkg.dev/ceylonally/ghcr/ceylon-ally/ceylon-ally:$COMMIT_SHA']
|
||||||
# Deploy to Cloud Run
|
# Deploy to Cloud Run
|
||||||
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
|
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
|
||||||
entrypoint: gcloud
|
entrypoint: gcloud
|
||||||
args:
|
args:
|
||||||
- 'run'
|
- 'run'
|
||||||
- 'deploy'
|
- 'deploy'
|
||||||
- 'ceylonally'
|
- 'ceylon-ally'
|
||||||
- '--image'
|
- '--image'
|
||||||
- 'us-central1-docker.pkg.dev/ceylonally/ghcr/open-webui/open-webui:$COMMIT_SHA'
|
- 'us-central1-docker.pkg.dev/ceylonally/ghcr/ceylon-ally/ceylon-ally:$COMMIT_SHA'
|
||||||
- '--region'
|
- '--region'
|
||||||
- 'us-central1'
|
- 'us-central1'
|
||||||
- '--memory'
|
- '--memory'
|
||||||
@ -21,5 +21,6 @@ steps:
|
|||||||
- '--allow-unauthenticated'
|
- '--allow-unauthenticated'
|
||||||
- '--set-env-vars'
|
- '--set-env-vars'
|
||||||
- 'STORAGE_BUCKET=ceylonally-data'
|
- 'STORAGE_BUCKET=ceylonally-data'
|
||||||
|
- 'STORAGE_PROVIDER=gcs'
|
||||||
- '--mount'
|
- '--mount'
|
||||||
- '/app/backend/data=gs://ceylonally-data'
|
- '/app/backend/data=gs://ceylonally-data'
|
||||||
|
@ -4,7 +4,7 @@ services:
|
|||||||
container_name: playwright
|
container_name: playwright
|
||||||
command: npx -y playwright@1.49.1 run-server --port 3000 --host 0.0.0.0
|
command: npx -y playwright@1.49.1 run-server --port 3000 --host 0.0.0.0
|
||||||
|
|
||||||
open-webui:
|
ceylon-ally:
|
||||||
environment:
|
environment:
|
||||||
- 'RAG_WEB_LOADER_ENGINE=playwright'
|
- 'RAG_WEB_LOADER_ENGINE=playwright'
|
||||||
- 'PLAYWRIGHT_WS_URI=ws://playwright:3000'
|
- 'PLAYWRIGHT_WS_URI=ws://playwright:3000'
|
@ -8,16 +8,16 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest}
|
image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest}
|
||||||
|
|
||||||
open-webui:
|
ceylon-ally:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
args:
|
args:
|
||||||
OLLAMA_BASE_URL: '/ollama'
|
OLLAMA_BASE_URL: '/ollama'
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
image: ghcr.io/open-webui/open-webui:${WEBUI_DOCKER_TAG-main}
|
image: ghcr.io/ceylon-ally/ceylon-ally:${WEBUI_DOCKER_TAG-main}
|
||||||
container_name: open-webui
|
container_name: ceylon-ally
|
||||||
volumes:
|
volumes:
|
||||||
- open-webui:/app/backend/data
|
- ceylon-ally:/app/backend/data
|
||||||
depends_on:
|
depends_on:
|
||||||
- ollama
|
- ollama
|
||||||
ports:
|
ports:
|
||||||
@ -31,4 +31,4 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
ollama: {}
|
ollama: {}
|
||||||
open-webui: {}
|
ceylon-ally: {}
|
||||||
|
4
run.sh
4
run.sh
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
image_name="open-webui"
|
image_name="ceylon-ally"
|
||||||
container_name="open-webui"
|
container_name="ceylon-ally"
|
||||||
host_port=3000
|
host_port=3000
|
||||||
container_port=8080
|
container_port=8080
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
|
||||||
<link rel="shortcut icon" href="/static/favicon.ico" />
|
<link rel="shortcut icon" href="/static/favicon.ico" />
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png" />
|
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png" />
|
||||||
<meta name="apple-mobile-web-app-title" content="Open WebUI" />
|
<meta name="apple-mobile-web-app-title" content="Ceylon Ally" />
|
||||||
|
|
||||||
<link rel="manifest" href="/manifest.json" />
|
<link rel="manifest" href="/manifest.json" />
|
||||||
<meta
|
<meta
|
||||||
@ -16,11 +16,11 @@
|
|||||||
/>
|
/>
|
||||||
<meta name="theme-color" content="#171717" />
|
<meta name="theme-color" content="#171717" />
|
||||||
<meta name="robots" content="noindex,nofollow" />
|
<meta name="robots" content="noindex,nofollow" />
|
||||||
<meta name="description" content="Open WebUI" />
|
<meta name="description" content="Ceylon Ally" />
|
||||||
<link
|
<link
|
||||||
rel="search"
|
rel="search"
|
||||||
type="application/opensearchdescription+xml"
|
type="application/opensearchdescription+xml"
|
||||||
title="Open WebUI"
|
title="Ceylon Ally"
|
||||||
href="/opensearch.xml"
|
href="/opensearch.xml"
|
||||||
/>
|
/>
|
||||||
<script src="/static/loader.js" defer></script>
|
<script src="/static/loader.js" defer></script>
|
||||||
@ -101,7 +101,7 @@
|
|||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<title>Open WebUI</title>
|
<title>Ceylon Ally</title>
|
||||||
|
|
||||||
%sveltekit.head%
|
%sveltekit.head%
|
||||||
</head>
|
</head>
|
||||||
|
@ -195,7 +195,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
<title>#{channel?.name ?? 'Channel'} | Open WebUI</title>
|
<title>#{channel?.name ?? 'Channel'} | Ceylon Ally</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
@ -108,7 +108,7 @@
|
|||||||
|
|
||||||
{#if $config?.license_metadata}
|
{#if $config?.license_metadata}
|
||||||
<div class="mb-2 text-xs">
|
<div class="mb-2 text-xs">
|
||||||
{#if !$WEBUI_NAME.includes('Open WebUI')}
|
{#if !$WEBUI_NAME.includes('Ceylon Ally')}
|
||||||
<span class=" text-gray-500 dark:text-gray-300 font-medium">{$WEBUI_NAME}</span> -
|
<span class=" text-gray-500 dark:text-gray-300 font-medium">{$WEBUI_NAME}</span> -
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
@ -151,7 +151,7 @@
|
|||||||
class="text-xs text-gray-400 dark:text-gray-500">Copyright (c) {new Date().getFullYear()} <a
|
class="text-xs text-gray-400 dark:text-gray-500">Copyright (c) {new Date().getFullYear()} <a
|
||||||
href="https://openwebui.com"
|
href="https://openwebui.com"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
class="underline">Open WebUI (Timothy Jaeryang Baek)</a
|
class="underline">Ceylon Ally (Timothy Jaeryang Baek)</a
|
||||||
>
|
>
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
|
||||||
<ShortName>Open WebUI</ShortName>
|
<ShortName>Ceylon Ally</ShortName>
|
||||||
<Description>Search Open WebUI</Description>
|
<Description>Search Ceylon Ally</Description>
|
||||||
<InputEncoding>UTF-8</InputEncoding>
|
<InputEncoding>UTF-8</InputEncoding>
|
||||||
<Image width="16" height="16" type="image/x-icon">/static/favicon.png</Image>
|
<Image width="16" height="16" type="image/x-icon">/static/favicon.png</Image>
|
||||||
<Url type="text/html" method="get" template="/?q={searchTerms}"/>
|
<Url type="text/html" method="get" template="/?q={searchTerms}"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user