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
And I realized that my example wasn't actually working. The error messages out of the docker daemon seem to imply that maybe the code is adding ='s to the config before passing it on. It also seems like I am not allowed to break up these "type" filters into a list.
I am guessing that the type=, type=, type= is expected to normally work, and that the internal parser code adds a '=' to the first =, but ignores the later ones in the strings.
The text was updated successfully, but these errors were encountered:
I did this pull request,
docker/docs#21596
And I realized that my example wasn't actually working. The error messages out of the docker daemon seem to imply that maybe the code is adding ='s to the config before passing it on. It also seems like I am not allowed to break up these "type" filters into a list.
So this appears to be working:
Note that is
type=
,type==
,type==
But this doesn't (daemon starts, but gc errors):
Note that is
type=
,type=
,type=
This also doesn't work (daemon won't even start):
I am guessing that the
type=
,type=
,type=
is expected to normally work, and that the internal parser code adds a '=' to the first=
, but ignores the later ones in the strings.The text was updated successfully, but these errors were encountered: