2019-04-03 07:09:58 +00:00
|
|
|
# Update debian
|
|
|
|
apt-get update; apt-get upgrade
|
|
|
|
|
|
|
|
# Installation of Docker
|
|
|
|
apt-get remove docker docker-engine docker.io containerd runc
|
|
|
|
apt-get install \
|
|
|
|
apt-transport-https \
|
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
gnupg2 \
|
|
|
|
software-properties-common
|
2019-04-03 08:00:02 +00:00
|
|
|
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
|
2019-04-03 07:09:58 +00:00
|
|
|
apt-key fingerprint 0EBFCD88
|
|
|
|
add-apt-repository \
|
|
|
|
"deb [arch=amd64] https://download.docker.com/linux/debian \
|
|
|
|
$(lsb_release -cs) \
|
|
|
|
stable"
|
|
|
|
apt-get update
|
|
|
|
apt-get install docker-ce docker-ce-cli containerd.io
|
2019-04-03 07:42:41 +00:00
|
|
|
|
2019-04-03 08:11:55 +00:00
|
|
|
# Launch Install Script
|
2019-04-03 08:05:13 +00:00
|
|
|
./docker/install-nginx.sh
|