Spaces:
Runtime error
Runtime error
File size: 566 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from phi.docker.app.base import DockerApp, ContainerContext # noqa: F401
class Qdrant(DockerApp):
# -*- App Name
name: str = "qdrant"
# -*- Image Configuration
image_name: str = "qdrant/qdrant"
image_tag: str = "v1.5.1"
# -*- App Ports
# Open a container port if open_port=True
open_port: bool = True
port_number: int = 6333
# -*- Qdrant Volume
# Create a volume for qdrant storage
create_volume: bool = True
# Path to mount the volume inside the container
volume_container_path: str = "/qdrant/storage"
|