diff --git a/docker-compose.yaml b/docker-compose.yaml index 632f5f5..8fce9a4 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -102,7 +102,13 @@ services: - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/minio:/minio_data command: minio server /minio_data healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"] + test: + [ + "CMD", + "curl", + "-f", + "http://localhost:9000/minio/health/live" + ] interval: 30s timeout: 20s retries: 3 @@ -110,7 +116,7 @@ services: standalone: container_name: milvus-standalone image: milvusdb/milvus:v2.0.2 - command: ["milvus", "run", "standalone"] + command: [ "milvus", "run", "standalone" ] environment: ETCD_ENDPOINTS: etcd:2379 MINIO_ADDRESS: minio:9000 @@ -122,5 +128,14 @@ services: - "etcd" - "minio" + frontend: + image: ghcr.io/rebel:latest + container_name: frontend + restart: always + expose: + - 80 + ports: + - 80:80 + volumes: postgresql_db_data: