Share data between two different containers - Docker

0 votes
How do I share data between two different docker containers?
Nov 25, 2019 in Docker by Hannah
• 18,540 points
1,855 views

1 answer to this question.

0 votes

Hi @Hannah, follow these steps:

1. Create an independent volume using the following command:

docker volume create --name DataVolume1

2. Create a new container and attach this newly created volume to it

docker run -ti --rm -v DataVolume1:/datavolume1 ubuntu

3. Create another container and attach this volume to it:

docker run --rm -ti -v DataVolume1:/datavolume1 ubuntu

Now you these containers have the same volume and communicate through it.

answered Nov 25, 2019 by Aria

Related Questions In Docker

0 votes
0 answers

How can I share data between two running Docker containers?

How can I share data between two ...READ MORE

4 hours ago in Docker by Anila
• 2,210 points
8 views
+1 vote
2 answers

How to run docker containers on different machines

You can use labels and selectors for ...READ MORE

answered Oct 23, 2018 in Docker by Laila
3,559 views
0 votes
1 answer

How to share data among docker hosts?

Ways to achieve this when developing your ...READ MORE

answered Jul 5, 2019 in Docker by Sirajul
• 59,230 points
634 views
0 votes
1 answer
+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,100 points
2,692 views
0 votes
1 answer

Different file owner inside Docker container and in host machine

Here is what you can try. Since ...READ MORE

answered Jun 27, 2018 in Docker by Atul
• 10,240 points
1,925 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