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
|
|
|
|
|
2019-04-24 09:17:53 +00:00
|
|
|
# Generate Docker Image for api
|
|
|
|
|
|
|
|
docker build -f docker/c2a-api.dockerfile -t c2a/api .
|
|
|
|
|
|
|
|
# Copy script to launch APIs
|
|
|
|
# Need to clone in /app/dev for dev and /app/prod for prod
|
|
|
|
|
|
|
|
mkdir /root/.bin
|
|
|
|
cp docker/script/start-api-dev.sh /root/.bin
|
|
|
|
cp docker/script/start-api-prod.sh /root/.bin
|
|
|
|
|
2019-04-05 05:02:19 +00:00
|
|
|
# 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
|