Skip to content
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

segfault when using Postgres feature on Apple Silicon #76

Open
DanBradbury opened this issue Mar 14, 2025 · 0 comments
Open

segfault when using Postgres feature on Apple Silicon #76

DanBradbury opened this issue Mar 14, 2025 · 0 comments

Comments

@DanBradbury
Copy link

Ran into this when trying to have our dev team start using devcontainers in our Rails 8.0 application.

Here's the simple devcontainer.json that is being used

{
  "image": "ghcr.io/rails/devcontainer/images/ruby:3.3.0",
  "features": {
    "ghcr.io/rails/devcontainer/features/postgres-client": {}
  }
}

This worked without issue on my older machine but folks with Apple chips were having issues even running irb and require "rails" without getting a segfault (seg-fault.txt)

I was able to confirm on a personal machine that the exact same behavior occurred on my M2 laptop when using the feature. If I remove the feature and rebuild I am able to run rails console, etc without issue.

In order to fix this my solution was to try and pass the --platform=linux/amd64 as a runArgs

{
  "image": "ghcr.io/rails/devcontainer/images/ruby:3.3.0",
  "runArgs": ["--platform=linux/amd64"],
  "features": {
    "ghcr.io/rails/devcontainer/features/postgres-client": {}
  }
}

Unfortunately this doesn't fix the issue because the features are built and do not pass along the same runArgs that were used by the image

If we change our nice/slim devcontainer.json and copy the devcontainer.json the Dockerfile from ruby/images/.devcontainer we are able to properly pass --platform as a build.options and image + features be created with the same architecture

Can find more people reporting similar issues here in vs-remote-releases repo a few days ago.

I'm not sure what the stance would be by folks that maintain the project but I'd like to propose using the build options as a default to avoid any "works on my machine" situations.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant