Reputation: 1
Now I want to create an onos cluster with docker and I followed the tutorial on the onos wiki: https://wiki.onosproject.org/display/ONOS/Notes+on+cluster+formation+for+Docker+instances
I have a problem: how can I get the ip of an atomix container?
After I create an atomix container (docker run -t -d --name atomix-2 atomix/atomix:3.1.5
), it stops immediately and I can't get its ip (docker inspect atomix-2 | grep -i ipaddress
).
Thank you for your answer.
I have tried docker run -dit --name atomix-2 atomix/atomix:3.1.5
, but it doesn't work, still get the same result.
Upvotes: 0
Views: 275
Reputation: 56
I have also experienced this same problem. What I did is ignore this step (3) and continue until step 8 (docker restart atomix-1
). Once this step is completed, repeat step 3 (docker inspect atomix-1 | grep -i ipaddress
) to verify the ip address of all nodes in the atomix cluster.
Upvotes: 0