浏览代码

Update websphere-liberty/content.md

yosifkit 7 年之前
父节点
当前提交
46ed082cd0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      websphere-liberty/content.md

+ 1 - 1
websphere-liberty/content.md

@@ -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