Files
xingrin/docker/docker-compose.dev.yml

134 lines
3.3 KiB
YAML
Raw Normal View History

2025-12-12 18:04:57 +08:00
services:
# PostgreSQL可选使用远程数据库时不启动
# 本地模式: docker compose --profile local-db up -d
# 远程模式: docker compose up -d需配置 DB_HOST 为远程地址)
# 使用自定义镜像,预装 pg_ivm 扩展
2025-12-12 18:04:57 +08:00
postgres:
profiles: ["local-db"]
build:
context: ./postgres
dockerfile: Dockerfile
image: ${DOCKER_USER:-yyhuni}/xingrin-postgres:${IMAGE_TAG:-dev}
2025-12-12 18:04:57 +08:00
restart: always
environment:
POSTGRES_DB: ${DB_NAME}
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
volumes:
- postgres_data:/var/lib/postgresql/data
- ./postgres/init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh
ports:
- "${DB_PORT}:5432"
command: >
postgres
-c shared_preload_libraries=pg_ivm
2025-12-12 18:04:57 +08:00
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${DB_USER}"]
interval: 5s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
restart: always
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 5s
retries: 5
server:
build:
context: ..
dockerfile: docker/server/Dockerfile
restart: always
env_file:
- .env
2025-12-22 10:04:27 +08:00
ports:
- "8888:8888"
2025-12-12 18:04:57 +08:00
depends_on:
redis:
condition: service_healthy
volumes:
# 统一挂载数据目录
- /opt/xingrin:/opt/xingrin
2025-12-12 18:04:57 +08:00
- /var/run/docker.sock:/var/run/docker.sock
2026-01-10 09:44:49 +08:00
# OOM 优先级:-500 保护核心服务
oom_score_adj: -500
2025-12-12 18:04:57 +08:00
healthcheck:
2025-12-31 22:21:40 +08:00
# 使用专门的健康检查端点(无需认证)
test: ["CMD", "curl", "-f", "http://localhost:8888/api/health/"]
2025-12-12 18:04:57 +08:00
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
2025-12-19 19:20:15 +08:00
# Agent心跳上报 + 负载监控 + 版本检查
2025-12-12 18:04:57 +08:00
agent:
build:
context: ..
2025-12-19 19:20:15 +08:00
dockerfile: docker/agent/Dockerfile
args:
IMAGE_TAG: ${IMAGE_TAG:-dev}
2025-12-12 18:04:57 +08:00
restart: always
environment:
- SERVER_URL=http://server:8888
- WORKER_NAME=Local-Worker
2025-12-12 18:04:57 +08:00
- IS_LOCAL=true
2025-12-19 19:20:15 +08:00
- IMAGE_TAG=${IMAGE_TAG:-dev}
2025-12-31 22:46:42 +08:00
- WORKER_API_KEY=${WORKER_API_KEY}
2025-12-12 18:04:57 +08:00
depends_on:
server:
condition: service_healthy
volumes:
- /proc:/host/proc:ro
frontend:
build:
context: ..
dockerfile: docker/frontend/Dockerfile
2025-12-21 09:51:00 +08:00
args:
IMAGE_TAG: ${IMAGE_TAG:-dev}
2025-12-12 18:04:57 +08:00
restart: always
2026-01-10 09:44:49 +08:00
# OOM 优先级:-500 保护 Web 界面
oom_score_adj: -500
2025-12-12 18:04:57 +08:00
depends_on:
server:
condition: service_healthy
nginx:
build:
context: ..
dockerfile: docker/nginx/Dockerfile
restart: always
2026-01-10 09:44:49 +08:00
# OOM 优先级:-500 保护入口网关
oom_score_adj: -500
2025-12-12 18:04:57 +08:00
depends_on:
server:
condition: service_healthy
frontend:
condition: service_started
ports:
2025-12-25 16:02:55 +08:00
- "8083:8083"
2025-12-12 18:04:57 +08:00
volumes:
# SSL 证书挂载(方便更新)
- ./nginx/ssl:/etc/nginx/ssl:ro
# Worker扫描任务执行容器开发模式下构建
worker:
build:
context: ..
dockerfile: docker/worker/Dockerfile
2025-12-18 22:55:33 +08:00
image: docker-worker:${IMAGE_TAG:-latest}-dev
restart: "no"
volumes:
- /opt/xingrin:/opt/xingrin
command: echo "Worker image built for development"
2025-12-12 18:04:57 +08:00
volumes:
postgres_data:
networks:
default:
name: xingrin_network # 固定网络名,不随目录名变化