Hi, I am deploying datahub v0.8.41 in docker 20.10...
# all-things-deployment
m
Hi, I am deploying datahub v0.8.41 in docker 20.10.17 and have found one thing that I don't know if it is intended to be this way but it doesn't make much sense as far as I know. The thing is that in the 3 basic services needed for the deployment (gms, frontend and actions) the user used to log in is not the same. For example: in datahub-gms is
uid=101(datahub) gid=101(datahub) groups=101(datahub)
but in the datahub-front-end is
uid=100(datahub) gid=101(datahub) groups=101(datahub)
. Is this done on purpose or is it just a mistake?? Thanks in advance for the help!
b
it is not intentional id are automatically assigned by os kernel when users/group are created unless specified explicitly. you can see the command for adding user/grou in docker file here gms - https://github.com/datahub-project/datahub/blob/master/docker/datahub-gms/Dockerfile#:~:text=RUN%20addgroup%20%2DS%[…]2DS%20datahub%20%2DG%20datahub frontend - https://github.com/datahub-project/datahub/blob/master/docker/datahub-frontend/Dockerfile#:~:text=RUN%20addgroup%20%2[…]S%20datahub%20%2DG%20datahub