-
Notifications
You must be signed in to change notification settings - Fork 29
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
mixer: Prompt when Docker is not running/user is not in docker group. #446
Comments
I think the usage of docker in mixer is going away from my memory @rchiossi would know for sure here. |
Hi @c-edw , thank you for your issue report. As @bryteise said, we are cunrently working on removing the built in docket feature in mixer since it is not needed for automated format bumps anymore. The current plan is to provide a separate docker image for users that need docker for compatibility reasons. As it will be a normal docker image like any other, there is no need for mixer to be aware of it. |
I'm not quite clear on how you are using Docker - I assumed that containers were being used ephemerally to build packages/images. If it's being removed then feel free to close this 👍 |
We are tracking this change here: clearlinux/mixer-tools#528 |
Is your feature request related to a problem? Please describe.
I'm trying out the mixer tool, but had issues with
mixer build update
due to two reasons:docker
group. I ransudo usermod -aG docker $USER
, logged out and then back in (to apply group changes) to fix this.systemctl start docker
to fix this.These issues lead to the mixer tool spitting out the following:
Describe the solution you'd like
I think the Docker daemon should be enabled (
systemctl enable docker
) and started (systemctl start docker
) when installed withswupd bundle-add
, or else any mixer commands which use Docker will fail. The user ideally would automatically be added to thedocker
group too, but that could pose risks, so the mixer tool should prompt for this.Describe alternatives you've considered
An alternative would be for the mixer tool to detect if the Docker daemon is running, and whether the user is in the Docker group.
Additional context
N/A.
The text was updated successfully, but these errors were encountered: