I have a docker swarm cluster. I deployed a Elassandra docker image. Now I want to find that the docker container's IP address for the seed node:
The following are my services in my swarm:
docker service ls
ID NAME
yjehoql7l976 elassandra_seed
I want find the IP address of the container for the Elassandra_seed node by its name to be used in my other docker compose file. Is that possible?
Following @rodrigo-loza idea, what I did is:
docker service ps
for getting the list of services running on my swarm. Add a filter condition to have only those that are actually running (--filter desired-state=running
) and format the output to only show serviceID
andName
docker inspect
and get the address that you need. This, can be done using format (check documentation about Format command and log output for more details regarding the syntax). It is something like--format '{{range $conf := (index (index .NetworksAttachments))}}{{.Addresses}}{{end}}'
Putting all together in
bash
should look like: