Skip to content

Latest commit

 

History

History
101 lines (47 loc) · 2.23 KB

velocitas_lib.docker.md

File metadata and controls

101 lines (47 loc) · 2.23 KB

module velocitas_lib.docker


function build_vehicleapp_image

build_vehicleapp_image(log_output: TextIOWrapper | int = -3) → None

Build VehicleApp docker image and display the progress using a spinner.

Args:

  • log_output (TextIOWrapper | int): Logfile to write or DEVNULL by default.

function is_docker_image_build_locally

is_docker_image_build_locally(app_name: str) → bool

Check if vehicle app docker image is locally available

Args:

  • app_name (str): App name to check for

function push_docker_image_to_registry

push_docker_image_to_registry(
    app_name: str,
    log_output: TextIOWrapper | int = -3
) → None

Push docker image to local image registry

Args:

  • app_name (str): App name to push to registry
  • log_output (TextIOWrapper | int): Logfile to write or DEVNULL by default.

function container_exists

container_exists(name: str, log_output: TextIOWrapper | int = -3) → bool

Check if a container with a given name exists.

Args:

  • log_output (TextIOWrapper | int): Logfile to write or DEVNULL by default.

Returns:

  • bool: True if the container exists, False if not.

This file was automatically generated via lazydocs.