services: llmx-core-database: image: postgres:16-alpine # 长期支持版本推荐用 16 container_name: llmx-core-database restart: always ports: - "5432:9052" networks: - llmx-net environment: POSTGRES_DB: llmx_db POSTGRES_USER: llmx POSTGRES_PASSWORD: L4s6f9y3, volumes: - llmx-core-db-volume:/var/lib/postgresql/data llmx-core-service: image: ${Docker_REGISTRY_URL}/llmx-core-service container_name: llmx-core-service ports: - "9002:9002" networks: - llmx-net volumes: - llmx-core-service-volume:/app/volume restart: always llmx-impl-baiLian: image: ${Docker_REGISTRY_URL}/llmx-impl-bailian container_name: llmx-impl-bailian ports: - "9003:9003" networks: - llmx-net volumes: - llmx-impl-baiLian-volume:/app/volume restart: always networks: llmx-net: driver: bridge volumes: llmx-core-service-volume: llmx-impl-baiLian-volume: llmx-core-db-volume: