You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Aspire.Hosting/ContainerResourceBuilderExtensions.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -706,8 +706,8 @@ public static IResourceBuilder<T> WithBuildSecret<T>(this IResourceBuilder<T> bu
706
706
/// <param name="builder">The resource builder for the container resource.</param>
707
707
/// <param name="destinationPath">The destination (absolute) path in the container.</param>
708
708
/// <param name="entries">The file system entries to create.</param>
709
-
/// <param name="defaultOwner">The default owner UID for the created or updated file system. Defaults to 0 for root.</param>
710
-
/// <param name="defaultGroup">The default group ID for the created or updated file system. Defaults to 0 for root.</param>
709
+
/// <param name="defaultOwner">The default owner UID for the created or updated file system. Defaults to 0 for root if not set.</param>
710
+
/// <param name="defaultGroup">The default group ID for the created or updated file system. Defaults to 0 for root if not set.</param>
711
711
/// <param name="umask">The umask <see cref="UnixFileMode"/> permissions to exclude from the default file and folder permissions. This takes away (rather than granting) default permissions to files and folders without an explicit mode permission set.</param>
@@ -769,8 +769,8 @@ public static IResourceBuilder<T> WithContainerFiles<T>(this IResourceBuilder<T>
769
769
/// <param name="builder">The resource builder for the container resource.</param>
770
770
/// <param name="destinationPath">The destination (absolute) path in the container.</param>
771
771
/// <param name="callback">The callback that will be invoked when the resource is being created.</param>
772
-
/// <param name="defaultOwner">The default owner UID for the created or updated file system. Defaults to 0 for root.</param>
773
-
/// <param name="defaultGroup">The default group ID for the created or updated file system. Defaults to 0 for root.</param>
772
+
/// <param name="defaultOwner">The default owner UID for the created or updated file system. Defaults to 0 for root if not set.</param>
773
+
/// <param name="defaultGroup">The default group ID for the created or updated file system. Defaults to 0 for root if not set.</param>
774
774
/// <param name="umask">The umask <see cref="UnixFileMode"/> permissions to exclude from the default file and folder permissions. This takes away (rather than granting) default permissions to files and folders without an explicit mode permission set.</param>
0 commit comments