https://github.com/iodar/docker-install
https://github.com/iodar/docker-install
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iodar/docker-install
- Owner: iodar
- License: agpl-3.0
- Created: 2022-07-08T13:20:01.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-12T08:30:56.000Z (almost 3 years ago)
- Last Synced: 2025-01-11T10:16:28.063Z (5 months ago)
- Language: Shell
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Install Scripts
1. Install Scripts For Distros
1.1 Prerequisites
1.1 Install On DebianThis repo contains scripts that simplify the installation of docker on linux operating systems. The scripts
follow the instructions from [docs.docker.com [docs.docker.com]](https://docs.docker.com).## Install Scripts For Distros
Currently only the installation on debian is supported. I will add more scripts for different distros if I need them.
You can download the script via file download or use the commands from the next section.
## Prerequisites
Run the following command to install curl on your system.
```bash
sudo apt-get install curl
```## Install On Debian
Download the script from this repo and run the script afterwards.
```bash
curl -L "https://raw.githubusercontent.com/iodar/docker-install/master/install-docker-deb.sh" -o install-docker-deb.sh
chmod 777 install-docker-deb.sh
sudo ./install-docker-deb.sh
```