in project/alcatraz/alcatraz/clusters/local.py [0:0]
def __init__(
self,
image: str,
side_images: list[str] | None = None,
runtime: str | None = None,
docker_host: str = "unix:///var/run/docker.sock",
pull_from_registry: bool = True,
local_network: bool = False,
health_check: bool = False,
jupyter_setup: list[str] | None = None,
is_nvidia_gpu_env: bool = False, # you better have nvidia gpus on your machine if you use this
privileged: bool = False,
environment: dict[str, str] | None = None,
disk_mount_path: str | None = None,
azure_container_config: dict[str, str] | None = None,
azure_files_config: dict[str, Any] | None = None,
volumes_config: VolumesConfig | None = None,
shm_size: str | None = None,
mem_limit: str | None = None,
limits: Limits = DEFAULT_LIMITS,
container_registry_credentials: ContainerRegistryCredentials | None = None,
docker_compose_yaml: str | None = None,
tmux_enabled: bool = False,