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
I recently realized that rolling and jazzy images have a user with username ubuntu:
ubuntu:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash
When I run on the following on a amd64 machine
forvin rolling jazzy iron humble galactic foxy eloquent dashing
doecho"❔checking $v";
docker run -q --rm ros:$v-ros-base /bin/bash -c "getent passwd 1000" \
&&echo"✅ UID 1000 found in $v"\
||echo"❌ UID 1000 not found in $v";done
I get:
❔checking rolling
ubuntu:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash
✅ UID 1000 found in rolling
❔checking jazzy
ubuntu:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash
✅ UID 1000 found in jazzy
❔checking iron
❌ UID 1000 not found in iron
❔checking humble
❌ UID 1000 not found in humble
❔checking galactic
❌ UID 1000 not found in galactic
❔checking foxy
❌ UID 1000 not found in foxy
❔checking eloquent
❌ UID 1000 not found in eloquent
❔checking dashing
❌ UID 1000 not found in dashing
So my question for it now is:
Is it an artifact carried over from respective ubuntu docker image?
Will it be the standard moving forward?
Is it a bug?
The text was updated successfully, but these errors were encountered:
I recently realized that rolling and jazzy images have a user with username
ubuntu
:When I run on the following on a
amd64
machineI get:
So my question for it now is:
The text was updated successfully, but these errors were encountered: