Docker: Installation

Installation

curl -fsSL https://get.docker.com/ | sh

Alternatives Vorgehen bei unbuntu 17

  1. https://github.com/moby/moby/releases/tag/v17.05.0-ce
  2. tar xzvf docker-17.04.0-ce.tgz
  3. sudo cp docker/* /usr/bin/
  4. chgrp docker /usr/bin(docker*
  5. sudo groupadd docker
  6. sudo usermod -aG docker $USER
  7. sudo apt-get install aufs-tools
  8. sudo dockerd
  9. docker run hello-world

Docker-Deamon automatisch starten

sudo systemctl enable docker

Schreibe einen Kommentar