11 lines
134 B
Bash
11 lines
134 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p /docker
|
|
cd /docker
|
|
|
|
apt update
|
|
apt install -y wget curl git
|
|
|
|
wget https://get.docker.io -O docker.sh
|
|
sh docker.sh
|