2019-04-03 07:09:58 +00:00
|
|
|
# Update debian
|
2019-04-05 05:12:45 +00:00
|
|
|
apt-get update; apt-get upgrade -y
|
2019-04-03 07:09:58 +00:00
|
|
|
|
|
|
|
# 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 \
|
2019-04-03 07:09:58 +00:00
|
|
|
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 -
|
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
|
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
|
2019-04-03 08:05:13 +00:00
|
|
|
./docker/install-nginx.sh
|
2019-04-03 08:57:03 +00:00
|
|
|
./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
|
2019-04-03 08:36:19 +00:00
|
|
|
|
|
|
|
service nginx restart
|
2019-04-08 03:03:20 +00:00
|
|
|
|
|
|
|
letsencrypt --email mathieu.sanchez@outlook.fr certonly --nginx -d gitlab.teksatcau.fr
|
|
|
|
letsencrypt --email mathieu.sanchez@outlook.fr certonly --nginx -d jenkins.teksatcau.fr
|
|
|
|
letsencrypt --email mathieu.sanchez@outlook.fr certonly --nginx -d portainer.teksatcau.fr
|