services: weaviate: command: - --host - 0.0.0.0 - --port - "8080" - --scheme - http image: cr.weaviate.io/semitechnologies/weaviate:1.32.0 # Required for text2vec-google taskType support ports: - 8080:8080 - 50051:50051 volumes: - weaviate_data:/var/lib/weaviate restart: on-failure:0 environment: QUERY_DEFAULTS_LIMIT: 25 PERSISTENCE_DATA_PATH: "/var/lib/weaviate" CLUSTER_HOSTNAME: "node1" # Swap OpenAI to Google modules ENABLE_MODULES: "text2vec-google" DEFAULT_VECTORIZER_MODULE: "text2vec-google" volumes: weaviate_data: