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
Expected behaviour: Should able to set the custom docker runtime.
Actual behaviour: Unable to set custom docker runtime.
How to reproduce
First of all, I'm trying to set the custom runtime by using docker itself, and it works as expected.
Then also, previously I tried to use docker.APIClient to set the custom runtime, and it works as expected.
But, now we move into asyncio, so that's why we use this aiodocker, but we have a problem to set the custom runtime.
# 1st terminal
docker --debug info | grep Runtimes
Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
docker run -it --runtime=io.containerd.runc.v2 debian
# 2nd terminal
docker ps
docker inspect <container_id># find "Runtime", and it set to "io.containerd.runc.v2"
Then, after that some how the "Runtime" unable to set to "io.containerd.runc.v2" when we do inspect to it container.
To note that, previously we able to set the runtime when it docker client is client = docker.APIClient
Your environment
macOS Big Sur
Python 3.8.14
django==3.2.15
docker==5.0.3
aiodocker==0.21.0
The text was updated successfully, but these errors were encountered:
Long story short
How to reproduce
First of all, I'm trying to set the custom runtime by using docker itself, and it works as expected.
Then also, previously I tried to use
docker.APIClient
to set the custom runtime, and it works as expected.But, now we move into asyncio, so that's why we use this
aiodocker
, but we have a problem to set the custom runtime.Then using aiodocker:
Your environment
The text was updated successfully, but these errors were encountered: