File system mounted to Docker Container with user-remap

The root requirement was to harden Docker in such way that there are no privilege escalation and container should run non root user

I used user-remap feature for this purpose. The user-remap resolved the above two issue but it created anther issue.

The container gives permission denied error for the directories mounted to until unless we the directory is not given others/world (o+w) permission on the host machine.

If I give the world permission then it again leads to privilege escalation since any other user on the host machine will have write access to all the containers directories.

The subgid and subuid files contains the following lines:

dockremap:100000:65536

I need solution to avoid the privilege escalation by either ways:

  1. dockremap user only have the access to containers directories
  2. another approach by avoid privileges escalation and run containers as non-root user.

PS: i am using photon os.