Get Docker

Get Docker

Docker is available in two editions: Community Edition (CE) and Enterprise Edition (EE).

Docker Community Edition (CE) is ideal for developers and small teams looking to get started with Docker and experimenting with container-based apps. Docker CE has two update channels, stable and edge: Stable gives you reliable updates every quarter and Edge gives you new features every month Docker Enterprise Edition (EE) is designed for enterprise development and IT teams who build, ship, and run business critical applications in production at scale. For more information about Docker EE, including purchasing options, see Docker Enterprise Edition. Get Docker Install Docker

Get Docker :: Dcoker CE for Ubuntu

To get started with Docker CE on Ubuntu, make sure you meet the prerequisites, then install Docker. Homepage

user@workstation:~$ sudo apt-get remove docker docker-engine docker.io
user@workstation:~$ sudo apt-get update
user@workstation:~$ sudo apt install curl
user@workstation:~$ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
user@workstation:~$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
user@workstation:~$ sudo apt-key fingerprint 0EBFCD88
user@workstation:~$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
user@workstation:~$ sudo apt-get update
user@workstation:~$ sudo apt-get install docker-ce

Get Docker :: Dcoker CE for Ubuntu :: Hello World

Get Docker :: Dcoker CE for Ubuntu :: Ubuntu

Last updated