Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(IDX): do not bind-mount home (#3982)
Do not bind-mount `$HOME` as this is generally really not safe and clean. User has freedom to bind-mount specific home directories or entire home via `$HOME/.container-run.conf`. See below. ```bash ❯ cat ~/.container-run.conf PODMAN_RUN_USR_ARGS=( --mount type=bind,source=${HOME}/dev,target=/home/ubuntu/dev --mount type=bind,source=${HOME}/.kube,target=/home/ubuntu/.kube ) ``` Having `$HOME` bind-mounted presented itself to be an issue with release verification of [this release](https://forum.dfinity.org/t/proposal-to-elect-new-release-rc-2025-02-13-03-06). Users tried to verified the build on AWS EC2 instance. It it yet not clear whether recent related code changes [here](#3752) are related.
- Loading branch information