DagsterDocs

Orchestration on Docker

APIs

class dagster_docker.DockerRunLauncher(inst_data=None, image=None, registry=None, env_vars=None, network=None)[source]

Launches runs in a Docker container.

Parameters
  • image (Optional[str]) – The docker image to be used if the repository does not specify one.

  • registry (Optional[Dict[str, str]]) – Information for using a non-local docker registry. If set, should include url, username, and password keys.

  • env_vars (Optional[List[str]]) – The list of environment variables names to forward to the docker container.

  • network (Optional[str]) – Name of the network this container to which to connect the launched container at creation time.