Docker представлен в виде Community Edition (CE) и Enterprise Edition (EE). Речь в данной шпаргалке идет о комьюнити-версии (CE).
Как установить Docker на Linux Mint 19
«Освежаем» операционную систему:
sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y && sudo apt autoremove -y
Устанавливаем необходимые зависимости:
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
Импортитруем PGP-ключи
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Добавляем нужный репозиторий
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(. /etc/os-release; echo "$UBUNTU_CODENAME") stable"
Обновляем списки репозиториев:
sudo apt-get update
Устанавливаем Docker:
sudo apt-get -y install docker-ce docker-compose
После установки добавляем нашего текущего пользователя в группу docker
sudo usermod -aG docker $USER
После этого завершаем сеанс пользователя под которым мы сидим. Логинимся в систему заново.
Пробуем запустить Докер:
docker run hello-world
Если всё ОК, то в результате Вы получите примерно следующее:
$ docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 1b930d010525: Pull complete Digest: sha256:4df8ca8a7e309c256d60d7971ea14c27672fc0d10c5f303856d7bc48f8cc17ff Status: Downloaded newer image for hello-world:latest Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/ For more examples and ideas, visit: https://docs.docker.com/get-started/
Если у Вас возникла ошибка типа такой
docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.40/containers/create?name=test: dial unix /var/run/docker.sock: connect: permission denied. See 'docker run --help'.
Значит Вы забыли перелогиниться в системе.
Данные для данной шпаргалки брал тут.
В 4 команде «[arch=amd64]» пришлось убрать — тогда заработало
+