From b98e6f652a1410c3964ecae086164e02e798a868 Mon Sep 17 00:00:00 2001 From: Sun-ZhenXing <1006925066@qq.com> Date: Mon, 15 Dec 2025 09:58:42 +0800 Subject: [PATCH] chore: update bifrost-gateway --- README.md | 2 +- README.zh.md | 2 +- src/bifrost-gateway/.env.example | 2 +- src/bifrost-gateway/README.md | 2 +- src/bifrost-gateway/README.zh.md | 2 +- src/bifrost-gateway/docker-compose.yaml | 2 +- src/gitea/docker-compose.yaml | 3 ++- src/renovate/docker-compose.yaml | 8 -------- 8 files changed, 8 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 600dd0d..84fb8d3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Compose Anything helps users quickly deploy various services by providing a set | [Apache Kafka](./src/kafka) | 7.8.0 | | [Apache Pulsar](./src/pulsar) | 4.0.7 | | [Apache RocketMQ](./src/rocketmq) | 5.3.1 | -| [Bifrost Gateway](./src/bifrost-gateway) | 1.2.15 | +| [Bifrost Gateway](./src/bifrost-gateway) | 1.3.48 | | [Bolt.diy](./src/bolt-diy) | latest | | [Budibase](./src/budibase) | 3.23.0 | | [Bytebot](./src/bytebot) | edge | diff --git a/README.zh.md b/README.zh.md index 4559276..38a162f 100644 --- a/README.zh.md +++ b/README.zh.md @@ -14,7 +14,7 @@ Compose Anything 通过提供一组高质量的 Docker Compose 配置文件, | [Apache Kafka](./src/kafka) | 7.8.0 | | [Apache Pulsar](./src/pulsar) | 4.0.7 | | [Apache RocketMQ](./src/rocketmq) | 5.3.1 | -| [Bifrost Gateway](./src/bifrost-gateway) | 1.2.15 | +| [Bifrost Gateway](./src/bifrost-gateway) | 1.3.48 | | [Bolt.diy](./src/bolt-diy) | latest | | [Budibase](./src/budibase) | 3.23.0 | | [Bytebot](./src/bytebot) | edge | diff --git a/src/bifrost-gateway/.env.example b/src/bifrost-gateway/.env.example index f0ff7d5..066038b 100644 --- a/src/bifrost-gateway/.env.example +++ b/src/bifrost-gateway/.env.example @@ -1,5 +1,5 @@ # Bifrost Gateway Version -BIFROST_VERSION=v1.2.15 +BIFROST_VERSION=v1.3.48 # Port to bind to on the host machine BIFROST_PORT=28080 diff --git a/src/bifrost-gateway/README.md b/src/bifrost-gateway/README.md index ec56c4d..6eb92f6 100644 --- a/src/bifrost-gateway/README.md +++ b/src/bifrost-gateway/README.md @@ -10,7 +10,7 @@ Bifrost is a lightweight, high-performance LLM gateway that supports multiple mo ## Configuration -- `BIFROST_VERSION`: The version of the Bifrost image, default is `v1.2.15`. +- `BIFROST_VERSION`: The version of the Bifrost image, default is `v1.3.48`. - `BIFROST_PORT`: The port for the Bifrost service, default is `28080`. ## Volumes diff --git a/src/bifrost-gateway/README.zh.md b/src/bifrost-gateway/README.zh.md index 8a41a4c..9e3118a 100644 --- a/src/bifrost-gateway/README.zh.md +++ b/src/bifrost-gateway/README.zh.md @@ -10,7 +10,7 @@ Bifrost 是一个轻量级、高性能的 LLM 网关,支持多种模型和提 ## 配置 -- `BIFROST_VERSION`: Bifrost 镜像的版本,默认为 `v1.2.15`。 +- `BIFROST_VERSION`: Bifrost 镜像的版本,默认为 `v1.3.48`。 - `BIFROST_PORT`: Bifrost 服务的端口,默认为 `28080`。 ## 卷 diff --git a/src/bifrost-gateway/docker-compose.yaml b/src/bifrost-gateway/docker-compose.yaml index 473ba13..997fbd1 100644 --- a/src/bifrost-gateway/docker-compose.yaml +++ b/src/bifrost-gateway/docker-compose.yaml @@ -9,7 +9,7 @@ x-defaults: &defaults services: bifrost: <<: *defaults - image: ${GLOBAL_REGISTRY:-}maximhq/bifrost:${BIFROST_VERSION:-v1.2.15} + image: ${GLOBAL_REGISTRY:-}maximhq/bifrost:${BIFROST_VERSION:-v1.3.48} volumes: - bifrost_data:/app/data ports: diff --git a/src/gitea/docker-compose.yaml b/src/gitea/docker-compose.yaml index 462e66a..fd343b0 100644 --- a/src/gitea/docker-compose.yaml +++ b/src/gitea/docker-compose.yaml @@ -21,7 +21,7 @@ services: - GITEA__database__PASSWD=${POSTGRES_PASSWORD:-gitea} volumes: - gitea_data:/var/lib/gitea - - ./config:/etc/gitea + - gitea_config:/etc/gitea ports: - "${GITEA_HTTP_PORT:-3000}:3000" - "${GITEA_SSH_PORT:-2222}:2222" @@ -70,4 +70,5 @@ services: volumes: gitea_data: + gitea_config: postgres: diff --git a/src/renovate/docker-compose.yaml b/src/renovate/docker-compose.yaml index 50bef7d..49e307e 100644 --- a/src/renovate/docker-compose.yaml +++ b/src/renovate/docker-compose.yaml @@ -22,10 +22,6 @@ services: volumes: # Configuration files - ./config.js:/usr/src/app/config.js:ro - # Cache directory for better performance - - renovate_cache:/tmp/renovate/cache - # Optional: mount repository cache - - renovate_repos:/tmp/renovate/repos environment: # Timezone @@ -102,7 +98,3 @@ services: - DAC_OVERRIDE security_opt: - no-new-privileges:true - -volumes: - renovate_cache: - renovate_repos: