An open API service indexing awesome lists of open source software.

https://github.com/marktheo/docker-install

Docker installation script for Fedora, Debian and Ubuntu
https://github.com/marktheo/docker-install

debian docker ubuntu

Last synced: over 1 year ago
JSON representation

Docker installation script for Fedora, Debian and Ubuntu

Awesome Lists containing this project

README

          

# Docker Installation Guide for Fedora, Debian and Ubuntu

**Download the installation script from source**
```
curl -fsSL https://get.docker.com -o get-docker.sh
```


**Execute the installation script as sudo**
```
sudo sh ./get-docker.sh
```


**Allow docker daemon to run without sudo**
```
sudo groupadd docker
```

```
sudo usermod -aG docker $USER
```

```
newgrp docker
```