View Source Dagger.Service (dagger v0.12.3)

A content-addressed service providing TCP connectivity.

Summary

Functions

Retrieves an endpoint that clients can use to reach this container.

Retrieves a hostname which can be used by clients to reach this container.

A unique identifier for this Service.

Retrieves the list of ports provided by the service.

Start the service and wait for its health checks to succeed.

Creates a tunnel that forwards traffic from the caller's network to this service.

Types

@type t() :: %Dagger.Service{client: term(), selection: term()}

Functions

Link to this function

endpoint(service, optional_args \\ [])

View Source
@spec endpoint(t(), port: integer() | nil, scheme: String.t() | nil) ::
  {:ok, String.t()} | {:error, term()}

Retrieves an endpoint that clients can use to reach this container.

If no port is specified, the first exposed port is used. If none exist an error is returned.

If a scheme is specified, a URL is returned. Otherwise, a host:port pair is returned.

@spec hostname(t()) :: {:ok, String.t()} | {:error, term()}

Retrieves a hostname which can be used by clients to reach this container.

@spec id(t()) :: {:ok, Dagger.ServiceID.t()} | {:error, term()}

A unique identifier for this Service.

@spec ports(t()) :: {:ok, [Dagger.Port.t()]} | {:error, term()}

Retrieves the list of ports provided by the service.

@spec start(t()) :: {:ok, t()} | {:error, term()}

Start the service and wait for its health checks to succeed.

Services bound to a Container do not need to be manually started.

Link to this function

stop(service, optional_args \\ [])

View Source
@spec stop(t(), [{:kill, boolean() | nil}]) :: {:ok, t()} | {:error, term()}

Stop the service.

Link to this function

up(service, optional_args \\ [])

View Source
@spec up(t(), ports: [Dagger.PortForward.t()], random: boolean() | nil) ::
  {:ok, Dagger.Void.t() | nil} | {:error, term()}

Creates a tunnel that forwards traffic from the caller's network to this service.