Tools, FAQ, Tutorials:
Install Docker CE on Ubuntu with "apt"
How to install Docker CE (Community Edition) on Ubuntu with "apt"?
✍: FYIcenter.com
You can follow this tutorial to install Docker CE (Community Edition) on Ubuntu
with the "apt" tool.
1. Get your Ubuntu codename with "lsb_release" command.
fyicenter$ lsb_release -cs bionic
2. Get your system architecture name with "arch" or "uname -m" command. x86_64 means amd64.
fyicenter$ arch x86_64
3. Add Docker repository to "apt" tool.
fyicenter$ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
4. Update "apt" package index.
fyicenter$ sudo apt-get update
5. Install the latest version of docker-ce, docker-ce-cli, and containerd.io.
fyicenter$ sudo apt-get install docker-ce docker-ce-cli containerd.io
2019-04-18, ∼1380🔥, 0💬
Popular Posts:
What is EPUB 3.0 Metadata "dc:description" Element? EPUB 3.0 Metadata "dc:description" is an optiona...
How To Break a File Path Name into Parts in PHP? If you have a file name, and want to get different ...
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most brows...
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabr...
What Is session_register() in PHP? session_register() is old function that registers global variable...