You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You must make sure the user you select can **write to your configuration directory** (`/PATH_TO_YOUR_CONFIG`) and has **access to your additional devices** (if applicable, anything made available using `docker run [...] --device`)!
22
+
23
+
### Default file permissions
24
+
25
+
If you need the files created by Home Assistant to be writeable by the group or everyone, you can customize the default permissions using the environment variable `UMASK` (see [umask (Wikipedia)](https://en.wikipedia.org/wiki/Umask) for an explanation).
26
+
27
+
For example, to allow write access for the group, add `-e UMASK=007` to your `docker run` call.
28
+
29
+
### Docker Compose
30
+
21
31
If you are running Docker Compose, you have to adds these parameters to your `docker-compose.yml` file instead:
22
32
23
33
user: '1000:1000'
24
34
command: '/config/docker/run'
25
-
26
-
In any case you must make sure the user you select can **write to your configuration directory** (`/PATH_TO_YOUR_CONFIG`) and has **access to your additional devices** (if applicable, anything made available using `docker run [...] --device`)!
0 commit comments