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
# Note: "$ " preceedes a line of input, "> " preceedes a line of output
$ docker buildx create \
--name amd64_builder \
--node amd64_builder \
--platform linux/amd64 \
"ssh://<MY_USER>@<IP>"
> WARNING: new settings may not be used until builder is restarted
> amd64_builder
it exits with 0 (does not fail), but produces the warning:
WARNING: new settings may not be used until builder is restarted
and when I docker buildx ls my builders, I see it is indeed inactive:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When I run the following
docker buildx create
:it exits with
0
(does not fail), but produces the warning:and when I
docker buildx ls
my builders, I see it is indeedinactive
:I am able to
ssh <MY_USER>@<IP>
(with all the valid~/.ssh/config
in place).Question (originally asked on SO): What is the meaning of
inactive
, and how do I properly activate my builder?Beta Was this translation helpful? Give feedback.
All reactions