forked from weaviate/weaviate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-test.yml
37 lines (36 loc) · 1.2 KB
/
docker-compose-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '3.4'
services:
weaviate:
image: weaviate/test-server
build:
context: .
dockerfile: Dockerfile
target: weaviate
restart: on-failure:0
ports:
- "8080:8080"
- "6060:6060"
- "2112:2112"
environment:
LOG_LEVEL: "debug"
CONTEXTIONARY_URL: contextionary:9999
QUERY_DEFAULTS_LIMIT: 20
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
PERSISTENCE_DATA_PATH: "./data"
DEFAULT_VECTORIZER_MODULE: text2vec-contextionary
ENABLE_MODULES: text2vec-contextionary
PROMETHEUS_MONITORING_ENABLED: 'true'
PROMETHEUS_MONITORING_GROUP_CLASSES: 'true'
# necessary for the metrics tests, some metrics only exist once segments
# are flushed. If we wait to long the before run is completely in
# memtables, the after run has some flushed which leads to some metrics
# diffs in the before and after
PERSISTENCE_MEMTABLES_FLUSH_IDLE_AFTER_SECONDS: 2
contextionary:
image: semitechnologies/contextionary:en0.16.0-v1.2.1
ports:
- "9999:9999"
environment:
OCCURRENCE_WEIGHT_LINEAR_FACTOR: 0.75
EXTENSIONS_STORAGE_MODE: weaviate
EXTENSIONS_STORAGE_ORIGIN: http://weaviate:8080