Skip to content

Commit

Permalink
added readme files to docker examples
Browse files Browse the repository at this point in the history
  • Loading branch information
drfho committed Nov 21, 2024
1 parent b7bab74 commit 47e3940
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
10 changes: 9 additions & 1 deletion docker/alpine/Extensions/readme.md
Original file line number Diff line number Diff line change
@@ -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.
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
```
13 changes: 12 additions & 1 deletion docker/ubuntu/Extensions/readme.md
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
# Externalizing Extensions for Docker
# 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
```

0 comments on commit 47e3940

Please sign in to comment.