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
{{ message }}
This repository has been archived by the owner on May 10, 2022. It is now read-only.
All the images contain a docker user (uuid and guid 1000). As most Linux systems have their first default user with this ID, this works well in most cases.
However, some systems, like Ubuntu, create their first user with 1001 as uuid and guid, and then nothing works as expected.
Solution is to: - [ ] change uuid and guid, only if needed, in the entrypoint, - [ ] pass the host uuid and guid as environment variables (in the compose files). How to do that: https://muffinresearch.co.uk/linux-changing-uids-and-gids-for-user/
This solution is impossible to use, as the docker user is already used when we attempt to change its IDs.
Another solution would be to remove completly the user (will be a big BC break regarding the compose files used in the different versions of the PIM), and directly pass the IDs to a "FPM start script".
The text was updated successfully, but these errors were encountered:
All the images contain a
docker
user (uuid
andguid
1000). As most Linux systems have their first default user with this ID, this works well in most cases.However, some systems, like Ubuntu, create their first user with 1001 as
uuid
andguid
, and then nothing works as expected.Solution is to:- [ ] changeuuid
andguid
, only if needed, in the entrypoint,- [ ] pass the hostuuid
andguid
as environment variables (in the compose files).How to do that: https://muffinresearch.co.uk/linux-changing-uids-and-gids-for-user/This solution is impossible to use, as the
docker
user is already used when we attempt to change its IDs.Another solution would be to remove completly the user (will be a big BC break regarding the compose files used in the different versions of the PIM), and directly pass the IDs to a "FPM start script".
The text was updated successfully, but these errors were encountered: