Update websphere-liberty/content.md

This commit is contained in:
yosifkit 2018-10-16 16:52:33 -04:00 committed by Arthur De Magalhaes
parent bce80863cb
commit 46ed082cd0
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ The images in this repository contain IBM WebSphere Application Server Liberty f
This image runs by default with `USER 1001` (non-root), as part of `group 0`. All of the folders accessed by WebSphere Liberty been given the appropriate permission, but if your extending Dockerfile needs permission to another location you can simply temporarily switch into root and provide the needed permissions, example:
```
```dockerfile
USER root
RUN mkdir -p /myFolder && chown -R 1001:0 /myFolder
USER 1001