Cài đặt Docker Và Docker-Compose
a. Cài đặt Docket
Đầu tiên, cài đặt các package cần thiết để chuẩn bị cho việc cài đặt Docker.
sudo apt update -y && sudo apt upgrade -y
sudo apt install apt-transport-https ca-certificates curl software-properties-common
Thêm Docker’s official GPG key vào hệ thống
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
Thiết lập Docker repository
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Sử dụng apt-get (hoặc apt) để cài đặt Docker Engine vào máy.
sudo apt update
sudo apt-cache policy docker-ce
sudo apt install docker-ce -y
Để xác nhận Docker đã được cài đặt và hoạt động ổn định, kiểm tra bằng cách sau.
sudo docker run hello-world
Nếu nhận được thông báo Hello from Docker! như hình dưới đây thì Docker đã sẵn sàng hoạt động
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
<https://hub.docker.com/>
For more examples and ideas, visit:
<https://docs.docker.com/get-started/>
Để quản lý Docker dưới tài khoản non-root (không cần phải chèn sudo khi gõ lệnh), bạn cần gán tài khoản hiện tại vào user group Docker như sau
sudo groupadd docker
sudo usermod -aG docker $USER
b. Cài đặt Docker Compose
Tải Docker Compose phiên bản mới nhất về máy
sudo curl -L "https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
Thiết lập quyền thực thi cho docker-compose và tạo symlink
sudo chmod +x /usr/local/bin/docker-compose
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
Để xác nhận Docker đã được cài đặt và hoạt động ổn định, kiểm tra bằng cách sau
docker-compose --version
Nếu nhận được thông báo tương tự như bên dưới thì docker-compose đã sẵn sàng hoạt động
docker-compose version 1.29.2, build 5becea4c