How do I get a Docker container s IP address from the host

+1 vote

I want to get the container's IP address right from the host after a new container is created?

Once Docker creates the container, I want to roll my own code deployment and container configuration scripts.

How do I do it ?

Can anyone help me with this?

Thanks

Aug 29, 2018 in DevOps & Agile by Damon Salvatore
• 5,980 points
743 views

1 answer to this question.

+1 vote

Save your docker image as a tar file:

docker save -o <path for generated tar file> <image name>

After that copy your image to a new system with regular file transfer tools such as cp or scp. Also you will have to load the image into Docker:

docker load -i <path to image tar file>

I hope it would help you resolve your query.

answered Aug 29, 2018 by shubham
• 7,340 points

Related Questions In DevOps & Agile

0 votes
1 answer
+1 vote
1 answer

How do I list containers in Docker?

To view running containers use  below command: docker ps I you want ...READ MORE

answered Sep 4, 2018 in DevOps & Agile by Damon Salvatore
• 5,980 points
568 views
0 votes
1 answer

How do I push a docker image to a private repository?

Here is what you can do. Just try ...READ MORE

answered Sep 19, 2018 in DevOps & Agile by Damon Salvatore
• 5,980 points
1,220 views
0 votes
1 answer

How do I assign a port mapping to an existing Docker container?

Below are some steps which you can ...READ MORE

answered Sep 19, 2018 in DevOps & Agile by Damon Salvatore
• 5,980 points
9,072 views
+2 votes
1 answer
+2 votes
1 answer

Deploy Docker Containers from Docker Cloud

To solve this problem, I followed advice ...READ MORE

answered Sep 3, 2018 in AWS by Priyaj
• 58,090 points
2,468 views
+1 vote
2 answers

How do I run Apache server from Docker without mapping to a location?

If you're seeing a 500 error, that's ...READ MORE

answered Oct 18, 2018 in DevOps & Agile by lina
• 8,220 points
1,870 views
+14 votes
5 answers

How do I run a cron job inside a docker container

If you can SSH into your server ...READ MORE

answered Jul 27, 2018 in DevOps & Agile by Kalgi
• 52,360 points
15,912 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP