-
Notifications
You must be signed in to change notification settings - Fork 581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can not use WithDataBindMount with Postgres #6997
Comments
What are you proposing as the fix for this? Are you expecting the @karolz-ms and @danegsta for their thoughts. |
@BenCoden are you running Docker Desktop on Windows? Or are you running a Docker alternative or a more complex Docker setup, e.g. Docker engine in WSL? |
This is almost certainly an issue with how bind mount permissions get exposed/set by the container runtime; we've seen similar issues reported several times. The postgres container runs as a specific linux user ( Volume mounts are one alternative option to bind mounts that "just work" to persist data, with the caveat that the data isn't directly accessible from the host machine anymore. To make bind mounts just work, I think we'd need to introduce a two stage startup for database containers. Instead of starting the standard container entrypoint directly, we need to make sure we chmod/chown the data bind mount to the correct permissions before the database starts. This could be via a custom entrypoint setup script or even doing a two-stage launch for containers where we run a placeholder entrypoint, do any custom configuration via |
For database containers in particular, using a volume mount for the data makes sense and bypasses the permission issue. @BenCoden have you considered a volume mount? |
I did end up using a volume mount.
I am using WSL |
Honestly, data mount was the first thing I encountered when looking into persisting the data. If volume mount is better practice for a db, I have no issues using it. |
To further clarify, are you using Docker Desktop on Windows configured to use WSL2? Or are you running Docker engine inside WSL manually? |
This submission has been automatically marked as stale because it has been marked as requiring author action but has not had any activity for 14 days. |
Is there an existing issue for this?
Describe the bug
When I add WithDataBindMount I get the following error.
Expected Behavior
The container would be provided with the proper permissions.
Steps To Reproduce
Create a New Aspire app with.Net 9
Add Nuget Aspire.Hosting.PostgreSQL v9.0.0
Add this code block to AppHost Program.cs
var postgres = builder.AddPostgres("postgres") .WithDataBindMount("C:\\PostgreSQL\\Data", false);
Run the App
Check the postgres log
Exceptions (if any)
No response
.NET Version info
.NET SDK:
Version: 9.0.100
Commit: 59db016f11
Workload version: 9.0.100-manifests.4a280210
MSBuild version: 17.12.7+5b8665660
Runtime Environment:
OS Name: Windows
OS Version: 10.0.26100
OS Platform: Windows
RID: win-x64
Base Path: C:\Program Files\dotnet\sdk\9.0.100\
.NET workloads installed:
[aspire]
Installation Source: VS 17.12.35521.163
Manifest Version: 8.2.2/8.0.100
Manifest Path: C:\Program Files\dotnet\sdk-manifests\8.0.100\microsoft.net.sdk.aspire\8.2.2\WorkloadManifest.json
Install Type: Msi
[maui-windows]
Installation Source: VS 17.12.35521.163
Manifest Version: 9.0.0/9.0.100
Manifest Path: C:\Program Files\dotnet\sdk-manifests\9.0.100\microsoft.net.sdk.maui\9.0.0\WorkloadManifest.json
Install Type: Msi
[maccatalyst]
Installation Source: VS 17.12.35521.163
Manifest Version: 18.1.9163/9.0.100
Manifest Path: C:\Program Files\dotnet\sdk-manifests\9.0.100\microsoft.net.sdk.maccatalyst\18.1.9163\WorkloadManifest.json
Install Type: Msi
[ios]
Installation Source: VS 17.12.35521.163
Manifest Version: 18.1.9163/9.0.100
Manifest Path: C:\Program Files\dotnet\sdk-manifests\9.0.100\microsoft.net.sdk.ios\18.1.9163\WorkloadManifest.json
Install Type: Msi
[android]
Installation Source: VS 17.12.35521.163
Manifest Version: 35.0.7/9.0.100
Manifest Path: C:\Program Files\dotnet\sdk-manifests\9.0.100\microsoft.net.sdk.android\35.0.7\WorkloadManifest.json
Install Type: Msi
Configured to use loose manifests when installing new manifests.
Host:
Version: 9.0.0
Architecture: x64
Commit: 9d5a6a9aa4
.NET SDKs installed:
9.0.100 [C:\Program Files\dotnet\sdk]
.NET runtimes installed:
Microsoft.AspNetCore.App 8.0.11 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 9.0.0 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 8.0.11 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 9.0.0 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 8.0.11 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 9.0.0 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Other architectures found:
x86 [C:\Program Files (x86)\dotnet]
registered at [HKLM\SOFTWARE\dotnet\Setup\InstalledVersions\x86\InstallLocation]
Environment variables:
Not set
global.json file:
Not found
Learn more:
https://aka.ms/dotnet/info
Download .NET:
https://aka.ms/dotnet/download
Anything else?
No response
The text was updated successfully, but these errors were encountered: