We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently using podman and expecting drop in behavior to work using an alias in the .bashrc led to a surprised here.
podman
alias
.bashrc
The following command to build the container using docker will not actually work with podman:
docker
docker run --rm -i -t -v "${PWD}:/doc" -u "$(id -u):$(id -g)" ohiosupercomputer/ood-doc-build make html
Instead, we need to alter some flags here and run:
podman run --rm=true -v $PWD:/doc --userns=keep-id --security-opt label=disable ohiosupercomputer/ood-doc-build:v2.0.0 make html
Instead. The use of -u and -userns being the difference between the APIs that causes the problem.
-u
-userns
Add the command to the instructions to avoid the issue for any podman users in the future.
┆Issue is synchronized with this Asana task by Unito
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently using
podman
and expecting drop in behavior to work using analias
in the.bashrc
led to a surprised here.The following command to build the container using
docker
will not actually work withpodman
:Instead, we need to alter some flags here and run:
Instead. The use of
-u
and-userns
being the difference between the APIs that causes the problem.Add the command to the instructions to avoid the issue for any
podman
users in the future.┆Issue is synchronized with this Asana task by Unito
The text was updated successfully, but these errors were encountered: