Skip to content

Commit 687976c

Browse files
committed
Add exec flag to tmpfs
Many people who are using Docker also use the Code Server for Nextcloud Office. This requires tmp/ to be executable. See nextcloud/docker#1896 (comment) Signed-off-by: Thore Goebel <goebel.thore@gmail.com>
1 parent 755d24f commit 687976c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ This app temporarily stores files to be recognized in /tmp. If you're using dock
9292
that adding an additional volume for /tmp speeds things up and eases the burden on your disk:
9393

9494

95-
`docker run`: Add `--mount type=tmpfs,destination=/tmp` to command line.
95+
`docker run`: Add `--mount type=tmpfs,destination=/tmp:exec` to command line.
9696

9797
`docker compose`: Add the following to the volume section `docker-compose.yml`:
9898
```yaml
@@ -101,7 +101,7 @@ that adding an additional volume for /tmp speeds things up and eases the burden
101101
...
102102
volumes:
103103
- type: tmpfs
104-
target: /tmp
104+
target: /tmp:exec
105105
...
106106
...
107107
```

0 commit comments

Comments
 (0)