How do I attach to an existing docker-machine (Azure)? -
say use following command create new azure docker machine:
docker-machine create -d azure \ --azure-subscription-id="$azure_subscription_id" \ --azure-size=standard_d14_v2 \ --azure-subscription-cert="${pwd}/certs/mycert.pem" \ --azure-location="east us" \ my-azure-node
after this, can see my-azure-node when run docker-machine ls
, ssh it, , run docker command want on it.
but want co-worker able operate on same running machine. so, once pass mycert.pem
(stupid question can share file her?). how initializes docker-machine such see same machine when doing docker-machine ls
, without trying create new one.
i want have single docker machine share, , simplicity of docker-machine.
Comments
Post a Comment