diff --git a/doc/FAQ.md b/doc/FAQ.md index cc0f6bd4..256a2c42 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -32,6 +32,6 @@ This is just a pre-caution. Imagine they would link to the same datadir. You sta See: *Why are mounted MySQL data directories separated by version?* -**Why do the user/group permissions of log/ or cfg/ directories show 1001?** +**Why do the user/group permissions of log/ or cfg/ directories show 1000?** Uid and Gid are set to 1000 by default. You can alter them to match the uid/gid of your current user. Open the `.env` file and change the sections `NEW_UID` and `NEW_GID`. When you start up the devilbox, the php-container will use these values for its user. diff --git a/env-example b/env-example index d7e7ed19..527ea271 100644 --- a/env-example +++ b/env-example @@ -235,8 +235,8 @@ HOST_PATH_PGSQL_DATADIR=./data/pgsql ### ### Type `id` on the terminal to find out your values ### -NEW_UID=1001 -NEW_GID=1001 +NEW_UID=1000 +NEW_GID=1000 ###