C2A-Installation-Server/install.sh

36 lines
890 B
Bash
Raw Normal View History

# Update debian
2019-04-05 05:12:45 +00:00
apt-get update; apt-get upgrade -y
# Installation of Docker
apt-get remove docker docker-engine docker.io containerd runc
2019-04-05 05:12:45 +00:00
apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
2019-04-05 05:47:29 +00:00
software-properties-common \
htop
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
2019-04-05 05:12:45 +00:00
apt-get install -y 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
2019-04-05 05:02:19 +00:00
./docker/install-jenkins.sh
2019-04-05 05:47:29 +00:00
./docker/install-portainer.sh
2019-04-05 05:12:45 +00:00
./docker/install-mongo.sh
service nginx restart