Table of contents
- Docker-Volume
- Docker Network
- Task-1
- Create a multi-container docker-compose file which will bring UP and bring DOWN containers in a single shot ( Example - Create application and database container )
- Use the docker-compose scale command to increase or decrease the number of replicas for a specific service. You can also add replicas in deployment file for auto-scaling.
- Use the docker-compose ps command to view the status of all containers, and docker-compose logs to view the logs of a specific service.
- Use the docker-compose down command to stop and remove all containers, networks, and volumes associated with the application
- Task-2
- Learn how to use Docker Volumes and Named Volumes to share files and directories between multiple containers.
- Create two or more containers that read and write data to the same volume using the docker run --mount command.
- Verify that the data is the same in all containers by using the docker exec command to run commands inside each container.
- Use the docker volume ls command to list all volumes and docker volume rm command to remove the volume when you're done.
Till now you have learned how to create docker-compose.yml file and pushed it to the Repository. Let's move forward and dig more on other Docker-compose.yml concepts.Aaj thodi padhai krte hai on Docker Volume & Docker Network 😃
Docker-Volume
- Docker allows you to create something called volumes. Volumes are like separate storage areas that can be accessed by containers. They allow you to store data, like a database, outside the container, so it doesn't get deleted when the container is deleted. You can also mount from the same volume and create more containers having same data.
Docker Network
- Docker allows you to create virtual spaces called networks, where you can connect multiple containers (small packages that hold all the necessary files for a specific application to run) together. This way, the containers can communicate with each other and with the host machine (the computer on which the Docker is installed). When we run a container, it has its own storage space that is only accessible by that specific container. If we want to share that storage space with other containers, we can't do that.
Task-1
Create a multi-container docker-compose file which will bring UP and bring DOWN containers in a single shot ( Example - Create application and database container )
- Create a directory
day-19
in that again create directorydocker-compose
- Past this yaml file to compose up and down for that create a file called
docker-compose.yaml
version : "3.3"
services:
web:
image: varsha0108/local_django:latest
deploy:
replicas: 2
ports:
- "8001-8005:8001"
volumes:
- my_django_volume:/app
db:
image: mysql
ports:
- "3306:3306"
environment:
- "MYSQL_ROOT_PASSWORD=test@123"
volumes:
my_django_volume:
external: true
- After that use this command to compose up ⬇️ if you execute that command it will ask to create a volume and create it the after do compose up.
docker-compose up -d
docker volume create --name=my_django_volume
docker-compose up -d
Use the docker-compose scale
command to increase or decrease the number of replicas for a specific service. You can also add replicas
in deployment file for auto-scaling.
- when we are using docker-compose scale we need to down our container and use this command to scale our container.Which means we to kill and remove our containers.
docker-compose down
- Now use this command to scale our file.
docker-compose up -d --scale web=5
Use the docker-compose ps
command to view the status of all containers, and docker-compose logs
to view the logs of a specific service.
docker-compose ps
docker-compose logs
Use the docker-compose down
command to stop and remove all containers, networks, and volumes associated with the application
- As we did in
docker-compose scale
task
Task-2
Learn how to use Docker Volumes and Named Volumes to share files and directories between multiple containers.
- Create a new volume
docker volume create ubuntu_volume
docker volume ls
docker volume inspect ubuntu_volume
Create two or more containers that read and write data to the same volume using the docker run --mount
command.
- Create two or more containers that need to read and write data. Use the below command to specify the same volume configuration for each container.
docker run -d --name nginx_container_1 -v ubuntu_volume:/app nginx:latest
docker run -d --name nginx_container_2 -v ubuntu_volume:/app nginx:latest
docker ps
Verify that the data is the same in all containers by using the docker exec command to run commands inside each container.
- Verify data consistency by executing commands inside each container using
docker exec
.
docker exec -it <CONTAINER ID 1> bash
cd app
echo "File created in container 1" > volume.txt
ls
exit
I have created a new file called 'volume-test.txt'
while connected to nginx_container_1
. Let's connect to nginx_container_2
and verify the text file is there.
docker exec -it nginx_container_2 bash
cd app
ls
cat volume.txt
exit
In this example, we have used the container ID
and the container name
with the docker exec
command to verify the content of the volume
Use the docker volume ls command to list all volumes and docker volume rm command to remove the volume when you're done.
- Utilize
docker volume ls
to list all volumes anddocker volume rm
to remove the volume once you have finished using it.
docker volume ls
- When we want to remove a volume our container should stop and remove, then we can remove the volumes.
Stopping the containers:
docker ps
docker stop <NAMES>
Removing the containers:
docker ps -a
docker rm <NAMES>
Removing the volumes:
docker volume ls
docker volume rm <VOLUME NAME>
Happy Learning
Thanks For Reading! :)
-DevOpsParthu💝💥