Files
aiagents-stock/docker-compose.yml
T
wsx180808 dbc6b5b359 1.修复docker运行无法打开页面问题 (#6)
2.支持下载DM文件
3.支持硅基流动,阿里百炼模型
2025-10-30 08:10:15 +08:00

33 lines
740 B
YAML

version: '3.8'
services:
agentsstock:
build:
context: .
dockerfile: Dockerfile
container_name: agentsstock1
ports:
- "8503:8503"
volumes:
# 数据和数据库持久化 - 使用目录挂载而不是文件挂载
- ./data:/app/data
# 环境变量配置文件
- ./.env:/app/.env
environment:
# 可以在这里设置环境变量,或者使用.env文件
- TZ=Asia/Shanghai
restart: unless-stopped
networks:
- agentsstock-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8503/_stcore/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
agentsstock-network:
driver: bridge