weaviate-test / Dockerfile
wjm55
Update Dockerfile to change exposed port to 8080 and add volume for persistent data; remove deprecated run-weaviate.sh script.
f9c1d3e
raw
history blame
393 Bytes
FROM cr.weaviate.io/semitechnologies/weaviate:1.30.0
ENV QUERY_DEFAULTS_LIMIT=25 \
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true \
PERSISTENCE_DATA_PATH=/var/lib/weaviate \
ENABLE_API_BASED_MODULES=true \
CLUSTER_HOSTNAME=node1
EXPOSE 8080 50051
# Create volume for persistent data
VOLUME ["/var/lib/weaviate"]
CMD ["--host", "0.0.0.0", "--port", "8080", "--scheme", "http"]