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
- Host: GitHub
- URL: https://github.com/marktheo/docker-install
- Owner: marktheo
- Created: 2024-11-16T02:52:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-21T19:40:25.000Z (over 1 year ago)
- Last Synced: 2025-01-21T12:46:20.874Z (over 1 year ago)
- Topics: debian, docker, ubuntu
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```