-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
regression: Docker v1.5.0 ISO has new docker uid #5755
Comments
Thank you for noticing this! There's a bunch of new system users added by the new OS. Users:
Groups:
|
Will try to compare the buildroot versions, and see where this changed... -BUILDROOT_BRANCH ?= 2018.05.3
+BUILDROOT_BRANCH ?= 2019.02.6 |
This is due to the introduction of
Apparently there is some bug in |
We actually did this earlier for dbus (only), but then it ended up in the right order:
$ more /usr/lib/sysusers.d/dbus.conf
# sysusers.d snippet for creating the D-Bus system user automatically
# at boot on systemd-based systems that ship with an unpopulated
# /etc. See sysusers.d(5) for details.
u dbus - "System Message Bus" But now the package users are created before the + $(call PRINTF,$(PACKAGES_USERS)) >> $(ROOTFS_FULL_USERS_TABLE)
ifneq ($(ROOTFS_USERS_TABLES),)
- cat $(ROOTFS_USERS_TABLES) >> $(USERS_TABLE)
+ cat $(ROOTFS_USERS_TABLES) >> $(ROOTFS_FULL_USERS_TABLE)
endif
- $(call PRINTF,$(PACKAGES_USERS)) >> $(USERS_TABLE) And there doesn't seem to be a buildroot config to change this behaviour back, either. So we will probably have to hard-code the UID/GID for the user to be 1000/1000 ? deploy/iso/minikube-iso/board/coreos/minikube/users
https://buildroot.org/downloads/manual/manual.html#makeuser-syntax |
Hello,
the image
minikube-v1.5.0.iso
contains thedocker
user with different id/group numbers compared with the previous versions.This cause issues for people relying on the default (home) shared volume because now it is owned by a different user.
With
minikube
versions1.2.0
,1.3.0
,1.4.0
:But with
minikube
version1.5.0
:This causes permission issues for people using the default (home) shared folder and relying on
minikube
default user id.The exact command to reproduce the issue:
The full output of the command that failed:
The output of the
minikube logs
command:The operating system version:
The text was updated successfully, but these errors were encountered: