C2A-Installation-Server/install.sh

34 lines
844 B
Bash
Raw Normal View History

# 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 -
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-05 05:02:19 +00:00
# Add Alias in bash
./docker/add-alias.sh
# Install let's encrypt
git clone https://github.com/letsencrypt/letsencrypt /opt/letsencrypt
2019-04-03 08:11:55 +00:00
# Launch Install Script
./docker/install-nginx.sh
./docker/install-gitlab.sh
./docker/install-portainer.sh
2019-04-05 05:02:19 +00:00
./docker/install-jenkins.sh
service nginx restart