I am a novice trying to navigate Docker cloud. I have set up and successfully deployed a swarm (using swarm mode) via Azure. I run the script to run and export
(1) docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock -e DOCKER_HOST dockercloud/client connelb/getstarted2 and (2) export DOCKER_HOST=tcp://192.168.99.100:32768.
while I expected (per instructions) something this:
$ docker node ls
ID HOSTNAME STATUS AVAILABILITY MANAGER STATUS
6uotpiv8vyxsjzdtux13nkvj4 swarm-worker000001 Ready Active
qmvk4swo9rdv1viu9t88dw0t3 swarm-worker000000 Ready Active
w7kgzzdkka0k2svssz1dk1fzw * swarm-manager000000 Ready Active
I think I am asking, how to configure my default shell to talk to my Azure swarm manager? What concept(s) am I missing?