Spaces:
Runtime error
Runtime error
File size: 2,189 Bytes
105b369 |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
from typing import Optional
from phi.app.db_app import DbApp
from phi.docker.app.base import DockerApp, ContainerContext # noqa: F401
class Redis(DockerApp, DbApp):
# -*- App Name
name: str = "redis"
# -*- Image Configuration
image_name: str = "redis"
image_tag: str = "7.2.1"
# -*- App Ports
# Open a container port if open_port=True
open_port: bool = True
port_number: int = 6379
# -*- Redis Volume
# Create a volume for redis storage
create_volume: bool = True
# Path to mount the volume inside the container
volume_container_path: str = "/data"
# -*- Redis Configuration
# Provide REDIS_PASSWORD as redis_password or REDIS_PASSWORD in secrets_file
redis_password: Optional[str] = None
# Provide REDIS_SCHEMA as redis_schema or REDIS_SCHEMA in secrets_file
redis_schema: Optional[str] = None
redis_driver: str = "redis"
logging_level: str = "debug"
def get_db_password(self) -> Optional[str]:
return self.db_password or self.get_secret_from_file("REDIS_PASSWORD")
def get_db_database(self) -> Optional[str]:
return self.redis_schema or self.get_secret_from_file("REDIS_SCHEMA")
def get_db_driver(self) -> Optional[str]:
return self.redis_driver
def get_db_host(self) -> Optional[str]:
return self.get_container_name()
def get_db_port(self) -> Optional[int]:
return self.container_port
def get_db_connection(self) -> Optional[str]:
password = self.get_db_password()
password_str = f"{password}@" if password else ""
schema = self.get_db_database()
driver = self.get_db_driver()
host = self.get_db_host()
port = self.get_db_port()
return f"{driver}://{password_str}{host}:{port}/{schema}"
def get_db_connection_local(self) -> Optional[str]:
password = self.get_db_password()
password_str = f"{password}@" if password else ""
schema = self.get_db_database()
driver = self.get_db_driver()
host = self.get_db_host_local()
port = self.get_db_port_local()
return f"{driver}://{password_str}{host}:{port}/{schema}"
|