Fix #487
Permissions on the jobs directory allowed anyone to write into the directory - this commit simply allows only the `node` user to `rwx` on the jobs directory.
This commit is contained in:
parent
80f033ee6d
commit
c355abc4a7
|
@ -10,5 +10,5 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- ./data/piston:/piston
|
- ./data/piston:/piston
|
||||||
tmpfs:
|
tmpfs:
|
||||||
- /piston/jobs:exec
|
- /piston/jobs:exec,uid=1000,gid=1000,mode=700
|
||||||
- /tmp:exec
|
- /tmp:exec
|
||||||
|
|
Loading…
Reference in New Issue