Преглед изворни кода

Merge pull request #1347 from arthurdm/patch-6

Clarifying the example
Tianon Gravi пре 7 година
родитељ
комит
e80795281c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      websphere-liberty/content.md

+ 1 - 1
websphere-liberty/content.md

@@ -12,7 +12,7 @@ RUN mkdir -p /myFolder && chown -R 1001:0 /myFolder
 USER 1001
 ```
 
-Also, you have to make sure that the artifacts you are copying into the image (via `COPY`) have the correct permission to be `read` and `executed` by user `1001` or group `0`. For example, you can do `chmod 777 server.xml` to ensure your `server.xml` can be `read` and `executed` by user `1001`.
+Also, you have to make sure that the artifacts you are copying into the image (via `COPY`) have the correct permission to be `read` and `executed` by user `1001` or group `0`. For example, you can do `chmod 777 server.xml` to ensure your `server.xml` can be `read` and `executed` by user `1001`, as well as any artifacts such as the application's `EAR` or `WAR` file, JDBC driver, or other files that are placed on the image via `COPY`.
 
 # Tags