Tools, FAQ, Tutorials:
Install Docker CE on Ubuntu Manually
How to install Docker CE (Community Edition) on Ubuntu Manually?
✍: FYIcenter.com
You can follow this tutorial to install Docker CE (Community Edition) on Ubuntu
manually.
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. Download the Docker CE package based your Ubuntu flavor and system architecture:
fyicenter$ mkdir docker-ce fyicenter$ cd docker-ce fyicenter$ curl https://download.docker.com/linux/ubuntu/dists/bionic/pool/stable/amd64/\ docker-ce_18.09.6~3-0~ubuntu-bionic_amd64.deb --output docker-ce.deb
4. Install docker-ce.deb
fyicenter$ sudo dpkg -i docker-ce.deb
5. Repeat the same process to install docker-ce-cli_18.09.6~3-0~ubuntu-bionic_amd64.deb.
6. Repeat the same process to install containerd.io_1.2.5-1_amd64.deb.
⇒ Install Docker CE with Shell Script
2019-04-21, 1227🔥, 0💬
Popular Posts:
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
How To Change Text Fonts for Some Parts of a Paragraph? If you want to change text fonts or colors f...
How to add request body examples to my Azure API operation to make it more user friendly? If you hav...
What is EPUB 3.0 Metadata "dcterms:modified" property? EPUB 3.0 Metadata "dcterms:modified" is a req...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...