Πώς βάζεις Docker σε Ubuntu εύκολα;
Μάρ 29, 2019
ubuntu code snippets docker
<h3>Εγκατάσταση Docker σε Ubuntu</h3>
<h4>1. Ενημέρωσε τα πακέτα και πρόσθεσε το repository του Docker</h4>
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
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 $(lsb_release -cs) stable"
<h4>2. Ξανά ενημέρωση και εγκατάσταση του docker-ce</h4>
sudo apt-get update
sudo apt-get install docker-ce