Known issues¶
This section describes the list of known issues and possible fix
Wrong permissions with Docker images¶
If you are running the installation with Docker image on HPC. You will most likely mount volumes with specific permissions. When running with Docker image, you might see:
I have no name!:~$
or
root:~$
and get a permission denied.
If you get such problem try the following fix:
groupadd -g $GID $GROUPNAME
useradd -u $UID -g $GID $USERNAME
su $USERNAME
You can get your $UID or $GID by connecting on the login node and running:
id -u
id -g