10 lines
178 B
Bash
10 lines
178 B
Bash
#!/bin/bash
|
|
|
|
apt-get update
|
|
apt-get install sudo curl
|
|
|
|
# Installation de Docker
|
|
curl -fsSL https://get.docker.com -o get-docker.sh
|
|
sudo sh get-docker.sh
|
|
mkdir -p /opt/docker/dns
|