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
The first line shows the Docker daemon (**dockerd**). The second line shows the `ps` command you just ran. The first column of the first line shows that the Docker daemon is running as **root**.
@@ -48,12 +47,11 @@ You must perform this step while logged in as the **ubuntu** user.
The last line of the output above shows that the container is running as root - `uid=0(root)` and `gid=0(root)`.
@@ -186,7 +184,6 @@ In this step you'll see how to implement user namespaces.
186
184
187
185
rm: remove 'sh'? y
188
186
rm: can't remove 'sh': Permission denied
189
-
190
187
```
191
188
192
189
The operation fails with a permission denied error. This is because the file you are trying to delete exists in the local filesystem of the Docker Host and the container does not have root access outside of the namespace that it exists in.
0 commit comments