Docker -> instalacja
Hej,
Oczywiście pod Linuksem, w dodatku Ubuntu.
Kilka komend i mamy ale dla wyjaśnienia: ja to instalowałem pod Mintem i dodatkowo aby zadziałało bez problemu, w pliku : /etc/apt/sources.list.d/additional-repositories.list musiałem podmienić „rosa” na „trusty”. Potem kolejno wg oryginalnej dokumentacji:
SET UP THE REPOSITORY
- Update the
apt
package index:$ sudo apt-get update
- Install packages to allow
apt
to use a repository over HTTPS:$ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common
- Add Docker’s official GPG key:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Verify that you now have the key with the fingerprint
9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
, by searching for the last 8 characters of the fingerprint.$ sudo apt-key fingerprint 0EBFCD88 pub 4096R/0EBFCD88 2017-02-22 Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid Docker Release (CE deb) <docker@docker.com> sub 4096R/F273FCD8 2017-02-22
- Use the following command to set up the stable repository. You always need the stable repository, even if you want to install builds from the edge or test repositories as well. To add the edge or test repository, add the word
edge
ortest
(or both) after the wordstable
in the commands below.
Note: The
lsb_release -cs
sub-command below returns the name of your Ubuntu distribution, such asxenial
. Sometimes, in a distribution like Linux Mint, you might need to change$(lsb_release -cs)
to your parent Ubuntu distribution. For example, if you are usingLinux Mint Rafaela
, you could usetrusty
.$ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
Note: Starting with Docker 17.06, stable releases are also pushed to the edge and test repositories.
INSTALL DOCKER CE
- Update the
apt
package index.$ sudo apt-get update
- Install the latest version of Docker CE, or go to the next step to install a specific version:
$ sudo apt-get install docker-ce
Źródła: https://docs.docker.com/install/linux/docker-ce/ubuntu/#set-up-the-repository