mirror of
https://github.com/Xoconoch/spotizerr.git
synced 2026-05-05 00:19:35 -05:00
docs(docker-compose): Add UMASK environment variable description
- Added a comment for the UMASK environment variable in docker-compose.yml - Clarified the purpose of UMASK: to set default file permissions for newly created files in the container - Explained the format and behavior of UMASK (e.g., 0022 for user read/write, others read-only)
This commit is contained in:
@@ -12,3 +12,4 @@ services:
|
||||
environment:
|
||||
- PUID=1000 # Replace with your desired user ID | Remove both if you want to run as root (not recommended, might result in unreadable files)
|
||||
- PGID=1000 # Replace with your desired group ID | The user must have write permissions in the volume mapped to /app/downloads
|
||||
- UMASK=0022 # Optional: Sets the default file permissions for newly created files within the container.
|
||||
|
||||
Reference in New Issue
Block a user