# Network

- Module: [Aspire.Hosting.Docker](/reference/api/typescript/aspire.hosting.docker.md)
- Version: `13.3.0`
- Kind: `handle`
- Source: [GitHub](https://github.com/microsoft/aspire)

## Definition

```typescript
interface Network {
  attachable: boolean;
  driver: string;
  driverOpts: Dict<string,string>;
  external: boolean;
  ingress: boolean;
  internal: boolean;
  labels: Dict<string,string>;
  name: string;
}
```

## Properties

- `attachable`: `boolean` `get - set` -- Gets the Attachable property
- `driver`: `string` `get - set` -- Gets the Driver property
- `driverOpts`: `Dict<string,string>` `get - set` -- Gets the DriverOpts property
- `external`: `boolean` `get - set` -- Gets the External property
- `ingress`: `boolean` `get - set` -- Gets the Ingress property
- `internal`: `boolean` `get - set` -- Gets the Internal property
- `labels`: `Dict<string,string>` `get - set` -- Gets the Labels property
- `name`: `string` `get - set` -- Gets the Name property
