You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Our cluster has disabled the user, root. This then means that using MONAI's docker image causes error since it only has one user, root. This problem may also affect other users, where they can't use root for various reasons. For example, I think by default, you can't SSH into a root user.
Describe the solution you'd like
In the Dockerfile, I'd like for a new user to be added (e.g., monai) with sudo privileges and for this to be the default.
Something like (not tested):
RUN adduser --disabled-password --gecos '' monai
USER monai
This discussion was converted from issue #1485 on May 13, 2021 09:19.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Is your feature request related to a problem? Please describe.
Our cluster has disabled the user,
root
. This then means that using MONAI's docker image causes error since it only has one user,root
. This problem may also affect other users, where they can't useroot
for various reasons. For example, I think by default, you can't SSH into a root user.Describe the solution you'd like
In the
Dockerfile
, I'd like for a new user to be added (e.g.,monai
) with sudo privileges and for this to be the default.Something like (not tested):
Beta Was this translation helpful? Give feedback.
All reactions