services: doc_ai: build: . container_name: doc_ai ports: - "8024:8024" volumes: - ./config:/app/config - ./logs:/app/logs networks: - backend depends_on: mysql: condition: service_healthy redis: condition: service_started command: ["-env", "dev"] restart: always mysql: image: mysql:8.0 container_name: mysql environment: MYSQL_ROOT_PASSWORD: texpixel#pwd123! MYSQL_DATABASE: doc_ai MYSQL_USER: texpixel MYSQL_PASSWORD: texpixel#pwd123! ports: - "3006:3306" volumes: - mysql_data:/var/lib/mysql networks: - backend healthcheck: test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-ptexpixel#pwd123!"] interval: 5s timeout: 5s retries: 10 start_period: 30s restart: always redis: image: redis:latest container_name: redis command: redis-server --requirepass "yoge@123321!" ports: - "6079:6379" networks: - backend restart: always volumes: mysql_data: # 持久化MySQL数据卷 driver: local networks: backend: driver: bridge