10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I want to report minor issue. I just found out that cgroupdriver is hardcoded to cgroupfs
colima/environment/container/docker/daemon.go
Lines 42 to 47 in 9d0de69
The effect is that docker will create cgroup directly under the root cgroup
This is a violation of the systemd contract https://systemd.io/CGROUP_DELEGATION/
we need to set native.cgroupdriver=systemd if the system is using systemd, but it is not configurable now because it is hardcoded
native.cgroupdriver=systemd
The text was updated successfully, but these errors were encountered:
fix: abiosoft#1311
23bd8c1
7e1cd54
d56856a
fcbe61e
I created the fix here #1312, please help review
thanks
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi, I want to report minor issue.
I just found out that cgroupdriver is hardcoded to cgroupfs
colima/environment/container/docker/daemon.go
Lines 42 to 47 in 9d0de69
The effect is that docker will create cgroup directly under the root cgroup
This is a violation of the systemd contract https://systemd.io/CGROUP_DELEGATION/
we need to set
native.cgroupdriver=systemd
if the system is using systemd, but it is not configurable now because it is hardcodedThe text was updated successfully, but these errors were encountered: