Spaces:
Runtime error
Runtime error
File size: 393 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from typing import Optional, Union, List
from phi.docker.app.airflow.base import AirflowBase
class AirflowFlower(AirflowBase):
# -*- App Name
name: str = "airflow-flower"
# Command for the container
command: Optional[Union[str, List[str]]] = "flower"
# -*- App Ports
# Open a container port if open_port=True
open_port: bool = True
port_number: int = 5555
|