# `Dagger.Port`
[🔗](https://github.com/dagger/dagger/blob/v0.20.5/sdk/elixir/lib/dagger/gen/port.ex#L2)

A port exposed by a container.

# `t`

```elixir
@type t() :: %Dagger.Port{client: term(), query_builder: term()}
```

# `description`

```elixir
@spec description(t()) :: {:ok, String.t() | nil} | {:error, term()}
```

The port description.

# `experimental_skip_healthcheck`

```elixir
@spec experimental_skip_healthcheck(t()) :: {:ok, boolean()} | {:error, term()}
```

Skip the health check when run as a service.

# `id`

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

A unique identifier for this Port.

# `port`

```elixir
@spec port(t()) :: {:ok, integer()} | {:error, term()}
```

The port number.

# `protocol`

```elixir
@spec protocol(t()) :: {:ok, Dagger.NetworkProtocol.t()} | {:error, term()}
```

The transport layer protocol.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
