On 2023-07-15 11:13 AM, Shawn Heisey wrote: ...
Why do you need to change the user/group?
It is possible that the numbers used by the container are already taken by something else on the host: there's no set standard, only some linux conventions that are younger than some unix user accounts.
OP needs to pull Dockerfile from upstream, change the numbers in ``` ENV SOLR_USER="solr" \ SOLR_UID="8983" \ SOLR_GROUP="solr" \ SOLR_GID="8983" \ ... ``` (^^^ from the "official" image from Dockerhub) and `docker build` it. Dima