From 47e394024aaf001ebb89b1921d23f1ff30d14da2 Mon Sep 17 00:00:00 2001 From: drfho Date: Thu, 21 Nov 2024 07:35:15 +0100 Subject: [PATCH] added readme files to docker examples --- docker/alpine/Extensions/readme.md | 10 +++++++++- docker/ubuntu/Extensions/readme.md | 13 ++++++++++++- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/docker/alpine/Extensions/readme.md b/docker/alpine/Extensions/readme.md index 8f483b4f4..8a58c7a6b 100755 --- a/docker/alpine/Extensions/readme.md +++ b/docker/alpine/Extensions/readme.md @@ -1,4 +1,12 @@ # Externalizing Extensions for Docker Hint: Mounting the folder ./Extensions keeps the external functions -synchronous to all all ZEO clients and Docker containers. \ No newline at end of file +synchronous to all all ZEO clients and Docker containers. + +Hint: if the docker container cannot write to the ./Extensions or ./var folder, +you can simply set the permissions to 777. (Important: not recommended for production!) + +```bash +chmod -R 777 Extensions +chmod -R 777 var +``` \ No newline at end of file diff --git a/docker/ubuntu/Extensions/readme.md b/docker/ubuntu/Extensions/readme.md index 820867944..8a58c7a6b 100755 --- a/docker/ubuntu/Extensions/readme.md +++ b/docker/ubuntu/Extensions/readme.md @@ -1 +1,12 @@ -# Externalizing Extensions for Docker \ No newline at end of file +# Externalizing Extensions for Docker + +Hint: Mounting the folder ./Extensions keeps the external functions +synchronous to all all ZEO clients and Docker containers. + +Hint: if the docker container cannot write to the ./Extensions or ./var folder, +you can simply set the permissions to 777. (Important: not recommended for production!) + +```bash +chmod -R 777 Extensions +chmod -R 777 var +``` \ No newline at end of file