Exploring Docker containers: Container Lifecycle
Working with Docker containers involves managing the lifecycle of containers through various operations such as building images, pulling images, and running containers.
Below is an overview of the container lifecycle using Docker commands.
1. Docker Lifecycle: Building, Pulling, and Running Containers
1.1 Docker Build
Docker Build creates a container image from a Dockerfile
.
Steps:
Create a
Dockerfile
specifying the base image, dependencies, and commands.Use the
docker build
command to create an image from the Dockerfile.
Command:
xxxxxxxxxx
11docker build -t my-image-name:tag .
Example:
xxxxxxxxxx
11docker build -t my-app:latest .
1.2 Docker Pull
Docker Pull downloads an image from Docker Hub or other registries.
Steps:
Pull an image from Docker Hub or a private registry using the docker pull
command.
Command:
xxxxxxxxxx
11docker pull <image-name>:<tag>
Example:
xxxxxxxxxx
11docker pull nginx:latest
1.3 Docker Run
Docker Run starts a container from a pulled or built image.
Steps:
Pull or build an image.
Start a container using the
docker run
command.
Command:
xxxxxxxxxx
11docker run [OPTIONS] <image-name>:<tag>`
Example:
xxxxxxxxxx
11docker run -p 8080:80 nginx:latest
2. Detailed Steps for Docker Build, Pull, and Run
2.1 Docker Build Process
Create Dockerfile:
xxxxxxxxxx
51FROM ubuntu:20.04`
2RUN apt-get update && apt-get install -y curl`
3COPY . /app`
4WORKDIR /app`
5CMD ["python", "app.py"]`
Build Image:
xxxxxxxxxx
11docker build -t my-app:latest .`
2.2 Docker Pull Process
Pull Image:
xxxxxxxxxx
11docker pull alpine:3.15
2.3 Docker Run Process
Run Container:
xxxxxxxxxx
11docker run -p 8080:80 my-app:latest
3. Docker Container Lifecycle
Docker Build
Used to create a new container image.
Specifies the steps Docker should follow to create the image.
Docker Pull
Used to download pre-existing images from Docker Hub or private registries.
Ensures the latest or a specific version of an image is used.
Docker Run
Starts a new container from a specified image.
Allows customization through various options such as ports, environment variables, volumes, and more.
4. Managing Containers
Stopping and Removing Containers
Stop a container:
xxxxxxxxxx
11docker stop <container-id>
Remove a container:
xxxxxxxxxx
11docker rm <container-id>
Listing Containers
List Running Containers:
xxxxxxxxxx
11docker ps
List All Containers:
xxxxxxxxxx
11docker ps -a
5. Using Docker Compose
Docker Compose simplifies the process of managing multi-container applications.
Example Docker Compose File (docker-compose.yml
):
xxxxxxxxxx
101version'3'
2services
3 web
4 image nginx latest
5 ports
6"80:80"
7 volumes
8 my-data-volume:/data
9volumes
10 my-data-volume
Using Docker Compose:
xxxxxxxxxx
11docker-compose up --build
This builds, starts, and manages multi-container environments with ease.
Summary
By following these steps, you can effectively manage the lifecycle of Docker containers through building, pulling, and running.
Leave a Reply