Skip to content

Instantly share code, notes, and snippets.

@bobvanluijt
Created January 14, 2026 09:16
Show Gist options
  • Select an option

  • Save bobvanluijt/5941210065a41c91ab3dadf28a83b670 to your computer and use it in GitHub Desktop.

Select an option

Save bobvanluijt/5941210065a41c91ab3dadf28a83b670 to your computer and use it in GitHub Desktop.
Weaviate Docker compose example
services:
weaviate:
image: cr.weaviate.io/semitechnologies/weaviate:latest
ports:
- "8080:8080"
- "50051:50051"
restart: on-failure:0
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
DEFAULT_VECTORIZER_MODULE: 'none'
CLUSTER_HOSTNAME: 'node1'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment