Run update.sh

This commit is contained in:
Docker Library Bot 2018-10-30 02:09:32 +00:00
parent e80795281c
commit a9bcacde2a
2 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,8 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`latest`, `7.7.19` (*7.7.19/stretch/Dockerfile*)](https://github.com/SWI-Prolog/docker-swipl/blob/1e124ba47bcc2ff0eaa7c357543bbdf723050025/7.7.19/stretch/Dockerfile)
- [`stable`, `7.6.4` (*7.6.4/stretch/Dockerfile*)](https://github.com/SWI-Prolog/docker-swipl/blob/1e124ba47bcc2ff0eaa7c357543bbdf723050025/7.6.4/stretch/Dockerfile)
- [`latest`, `7.7.20` (*7.7.20/stretch/Dockerfile*)](https://github.com/SWI-Prolog/docker-swipl/blob/599c776108e4cb86002c857dd9deee36f5388778/7.7.20/stretch/Dockerfile)
- [`stable`, `7.6.4` (*7.6.4/stretch/Dockerfile*)](https://github.com/SWI-Prolog/docker-swipl/blob/599c776108e4cb86002c857dd9deee36f5388778/7.6.4/stretch/Dockerfile)
# Quick reference

View File

@ -69,7 +69,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