feat(docker): 添加 OpenAI 实现服务
Some checks failed
CI/CD Pipeline / build-and-deploy (push) Failing after 3m5s

- 新增 llmx-impl-openai 服务,使用 Docker 部署
-配置端口映射、网络、环境变量和卷
- 更新网络和卷定义,支持 OpenAI 服务
This commit is contained in:
gewuyou 2025-05-11 21:59:07 +08:00
parent f32ee88300
commit d429cde555

View File

@ -42,6 +42,18 @@ services:
volumes:
- llmx-impl-bailian-volume:/app/volume
restart: always
llmx-impl-openai:
image: ${DOCKER_REGISTRY_URL}/llmx-impl-openai
container_name: llmx-impl-openai
ports:
- "9004:9004"
networks:
- llmx-net-test
environment:
SPRING_PROFILES_ACTIVE: ${SPRING_PROFILES_ACTIVE}
volumes:
- llmx-impl-openai-volume:/app/volume
restart: always
llmx-core-database:
image: postgres:16-alpine # 长期支持版本推荐用 16
container_name: llmx-database
@ -62,6 +74,7 @@ networks:
driver: bridge
volumes:
llmx-core-service-volume:
llmx-impl-bailian-volume:
llmx-core-db-volume:
llmx-nacos-volume:
llmx-nacos-volume:
llmx-impl-bailian-volume:
llmx-impl-openai-volume: