docker buildx does not uninstall and keep been used as default #2142
-
I have created a new container using buildx to use multiplatforms. Now my app is using this buildx container as default and it does not work with private repositories. This is causing my app not to build. I tried:
Don't know what else to do to make my program to NOT use buildx to stop getting this container to be created automatically when building the app |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
What command did you type to create the builder? I assume you used the command
I guess you also set
This will just remove the alias of You can see the list of builders with If you want to remove a builder you have to use the |
Beta Was this translation helpful? Give feedback.
Then you can either switch to
default
usingdocker buildx use default
so it will build as before using the docker engine (nominal case)Or you can remove
nice_noether
builder usingdocker buildx rm nice_noether
and it should automatically switch todefault
.