6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-21 00:49:02 +00:00
tutor/cloud/ubuntu.sh

46 lines
1.5 KiB
Bash
Raw Normal View History

2019-02-13 19:18:47 +00:00
#! /bin/bash -e
# Provision an AWS cloud instance with tutor.
2019-02-13 22:44:42 +00:00
# Run with: curl -sSL https://raw.githubusercontent.com/regisb/tutor/master/cloud/ubuntu.sh | sudo bash -e
2019-02-13 19:18:47 +00:00
export TUTOR_VERSION="v3.0.5"
export USER="$SUDO_USER"
2019-02-13 19:18:47 +00:00
export DEBIAN_FRONTEND=noninteractive
echo "=============== Installing system dependencies"
apt update \
&& apt upgrade -y \
&& apt install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common \
supervisor
echo "=============== Installing docker"
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
apt update
apt install -y docker-ce docker-ce-cli containerd.io
docker run hello-world
usermod -aG docker $USER
echo "=============== Installing docker-compose"
curl -L "https://github.com/docker/compose/releases/download/1.23.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
echo "=============== Installing tutor"
2019-02-13 22:44:42 +00:00
curl -L "https://github.com/regisb/tutor/releases/download/$TUTOR_VERSION/tutor-linux" -o /usr/local/bin/tutor
2019-02-13 19:18:47 +00:00
chmod +x /usr/local/bin/tutor
echo "=============== Configuring supervisor"
echo "[program:tutor]
command=/usr/local/bin/tutor webui start
environment=HOME=/home/$USER
autorestart=true
user=$USER" > /etc/supervisor/conf.d/tutor.conf
supervisorctl update