Skip to content

Commit

Permalink
set ports instead of network_mode (#145)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
3 people authored Jul 8, 2024
1 parent 2a8a8ed commit fd6bea4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion engine/servers/qdrant-billion-scale/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ version: '3.7'
services:
qdrant_bench:
image: qdrant/qdrant:v1.7.3
network_mode: host
ports:
- "6333:6333"
- "6334:6334"
volumes:
- ./storage:/qdrant/storage
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ services:
qdrant_bench:
image: ${CONTAINER_REGISTRY:-docker.io}/qdrant/qdrant:${QDRANT_VERSION}
container_name: qdrant-continuous
network_mode: host
ports:
- "6333:6333"
- "6334:6334"
logging:
driver: "json-file"
options:
Expand Down
4 changes: 3 additions & 1 deletion engine/servers/qdrant-limit-ram/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ version: '3.7'
services:
qdrant_bench:
image: qdrant/qdrant:v1.7.3
network_mode: host
ports:
- "6333:6333"
- "6334:6334"
logging:
driver: "json-file"
options:
Expand Down
4 changes: 3 additions & 1 deletion engine/servers/qdrant-single-node/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ version: '3.7'
services:
qdrant_bench:
image: ${CONTAINER_REGISTRY:-docker.io}/qdrant/qdrant:v1.9.5
network_mode: host
ports:
- "6333:6333"
- "6334:6334"
logging:
driver: "json-file"
options:
Expand Down
4 changes: 3 additions & 1 deletion engine/servers/weaviate-single-node/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ services:
- --scheme
- http
image: cr.weaviate.io/semitechnologies/weaviate:1.25.1
network_mode: host
ports:
- "8090:8090"
- "50051:50051"
logging:
driver: "json-file"
options:
Expand Down

0 comments on commit fd6bea4

Please sign in to comment.