version: '3.8' services: minio-manager: container_name: minio-manager restart: unless-stopped ports: - "9002:9002" volumes: - ./home/baoshi/minio/backend/app:/app - ./home/baoshi/minio/backend/logs:/app/logs depends_on: minio: condition: service_healthy healthcheck: test: ["CMD", "curl", "-f", "http://localhost:9002/health"] interval: 30s timeout: 10s retries: 3 start_period: 40s