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

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


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

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Docker Install Scripts

1. Install Scripts For Distros

1.1 Prerequisites

1.1 Install On Debian

This 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
```