PostgresBuilderExtensions.WithDataVolume Method

Definition

Adds a named volume for the data folder to a PostgreSQL container resource.

public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.PostgresServerResource> WithDataVolume (this Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.PostgresServerResource> builder, string? name = default, bool isReadOnly = false);
static member WithDataVolume : Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.PostgresServerResource> * string * bool -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.PostgresServerResource>
<Extension()>
Public Function WithDataVolume (builder As IResourceBuilder(Of PostgresServerResource), Optional name As String = Nothing, Optional isReadOnly As Boolean = false) As IResourceBuilder(Of PostgresServerResource)

Parameters

builder
IResourceBuilder<PostgresServerResource>

The resource builder.

name
String

The name of the volume. Defaults to an auto-generated name based on the application and resource names.

isReadOnly
Boolean

A flag that indicates if this is a read-only volume.

Returns

The IResourceBuilder<T>.

Applies to