Install Docker CE instead of LXC

This commit is contained in:
Disassembler 2017-11-30 06:46:38 +01:00
parent f8bc27aff5
commit 89ae15f3f4

View File

@ -78,6 +78,19 @@ cp ${SOURCE_DIR}/etc/postfix/main.cf /etc/postfix/main.cf
systemctl restart postfix systemctl restart postfix
#####
# Docker
#####
# Add Docker repository
echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list.d/docker.list
wget https://download.docker.com/linux/debian/gpg -O - | apt-key add -
apt-get -y update
# Install packages
apt-get -y --no-install-recommends install docker-ce
##### #####
# Nginx + uWSGI # Nginx + uWSGI
##### #####