Install Docker on Linux with one command
Vietnamese here: Cài đặt Docker lên Linux với một câu lệnh
Docker provides a convenient script to install Docker on different Linux distros quickly.
Run the following command to Install Docker:
curl -fsSL https://get.docker.com/ | sh
For preview script steps before running:
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh ./get-docker.sh --dry-run
Note: The above script use for development environments non-interactively. The convenience script isn’t recommended for production environments, but it’s useful for creating a provisioning script tailored to your needs.
Refer here: https://docs.docker.com/engine/install/ubuntu/
All rights reserved