Spaces:
Running
Running
Delete docker-compose-test.yml
Browse files- docker-compose-test.yml +0 -42
docker-compose-test.yml
DELETED
@@ -1,42 +0,0 @@
|
|
1 |
-
version: '3.4'
|
2 |
-
services:
|
3 |
-
weaviate:
|
4 |
-
image: weaviate/test-server
|
5 |
-
build:
|
6 |
-
context: .
|
7 |
-
dockerfile: Dockerfile
|
8 |
-
target: weaviate
|
9 |
-
restart: on-failure:0
|
10 |
-
ports:
|
11 |
-
- "8080:8080"
|
12 |
-
- "6060:6060"
|
13 |
-
- "2112:2112"
|
14 |
-
- "7101:7101"
|
15 |
-
- "50051:50051"
|
16 |
-
environment:
|
17 |
-
LOG_LEVEL: "debug"
|
18 |
-
CONTEXTIONARY_URL: contextionary:9999
|
19 |
-
QUERY_DEFAULTS_LIMIT: 20
|
20 |
-
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
|
21 |
-
PERSISTENCE_DATA_PATH: "./data"
|
22 |
-
DEFAULT_VECTORIZER_MODULE: text2vec-contextionary
|
23 |
-
ENABLE_MODULES: text2vec-contextionary
|
24 |
-
PROMETHEUS_MONITORING_ENABLED: 'true'
|
25 |
-
PROMETHEUS_MONITORING_GROUP_CLASSES: 'true'
|
26 |
-
CLUSTER_GOSSIP_BIND_PORT: "7100"
|
27 |
-
CLUSTER_DATA_BIND_PORT: "7101"
|
28 |
-
ASYNC_INDEXING: ${ASYNC_INDEXING:-false}
|
29 |
-
|
30 |
-
# necessary for the metrics tests, some metrics only exist once segments
|
31 |
-
# are flushed. If we wait to long the before run is completely in
|
32 |
-
# memtables, the after run has some flushed which leads to some metrics
|
33 |
-
# diffs in the before and after
|
34 |
-
PERSISTENCE_MEMTABLES_FLUSH_IDLE_AFTER_SECONDS: 2
|
35 |
-
contextionary:
|
36 |
-
image: semitechnologies/contextionary:en0.16.0-v1.2.1
|
37 |
-
ports:
|
38 |
-
- "9999:9999"
|
39 |
-
environment:
|
40 |
-
OCCURRENCE_WEIGHT_LINEAR_FACTOR: 0.75
|
41 |
-
EXTENSIONS_STORAGE_MODE: weaviate
|
42 |
-
EXTENSIONS_STORAGE_ORIGIN: http://weaviate:8080
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|