version 4.0.0 docker issue #256
bltsai-UCLA
started this conversation in
General
Replies: 2 comments 2 replies
-
Another issue in version 4.0.0 that was working in 3.4.13: |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @bltsai-UCLA. I pushed a new image to Docker Hub, you can try running again. Also, the container only contains Philosopher, if you want to un MSFragger as well, you will have to add it yourself. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would just like to point out that the 4.0.0 release may have a docker issue:
docker run -it --rm prvst/philosopher:4.0.0 /bin/bash
docker: Error response from daemon: unable to find user biodocker: no matching entries in passwd file.
2 solutions that resolve this issue are:
docker run -it --rm --user daemon prvst/philosopher:4.0.0 /bin/bash
docker run -it --rm --user $(id -u) prvst/philosopher:4.0.0 /bin/bash
It's also noticable that version does not have this issue:
docker run -it --rm prvst/philosopher:3.4.13 /bin/bash
Beta Was this translation helpful? Give feedback.
All reactions