Skip to content

Commit fd6bea4

Browse files
ekormanpre-commit-ci[bot]KShivendu
authored
set ports instead of network_mode (qdrant#145)
* set ports instead of network_mode * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * set ports for weaviate --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Kumar Shivendu <[email protected]>
1 parent 2a8a8ed commit fd6bea4

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

engine/servers/qdrant-billion-scale/docker-compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ version: '3.7'
33
services:
44
qdrant_bench:
55
image: qdrant/qdrant:v1.7.3
6-
network_mode: host
6+
ports:
7+
- "6333:6333"
8+
- "6334:6334"
79
volumes:
810
- ./storage:/qdrant/storage
911
environment:

engine/servers/qdrant-continuous-benchmarks/docker-compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ services:
44
qdrant_bench:
55
image: ${CONTAINER_REGISTRY:-docker.io}/qdrant/qdrant:${QDRANT_VERSION}
66
container_name: qdrant-continuous
7-
network_mode: host
7+
ports:
8+
- "6333:6333"
9+
- "6334:6334"
810
logging:
911
driver: "json-file"
1012
options:

engine/servers/qdrant-limit-ram/docker-compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ version: '3.7'
33
services:
44
qdrant_bench:
55
image: qdrant/qdrant:v1.7.3
6-
network_mode: host
6+
ports:
7+
- "6333:6333"
8+
- "6334:6334"
79
logging:
810
driver: "json-file"
911
options:

engine/servers/qdrant-single-node/docker-compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ version: '3.7'
33
services:
44
qdrant_bench:
55
image: ${CONTAINER_REGISTRY:-docker.io}/qdrant/qdrant:v1.9.5
6-
network_mode: host
6+
ports:
7+
- "6333:6333"
8+
- "6334:6334"
79
logging:
810
driver: "json-file"
911
options:

engine/servers/weaviate-single-node/docker-compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ services:
99
- --scheme
1010
- http
1111
image: cr.weaviate.io/semitechnologies/weaviate:1.25.1
12-
network_mode: host
12+
ports:
13+
- "8090:8090"
14+
- "50051:50051"
1315
logging:
1416
driver: "json-file"
1517
options:

0 commit comments

Comments
 (0)