2023-04-05 20:59:37 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-04-05 21:41:39 +00:00
|
|
|
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
|
|
|
|
set -x
|
|
|
|
fi
|
2023-04-05 20:59:37 +00:00
|
|
|
|
|
|
|
install_dir=~/bin
|
|
|
|
|
|
|
|
# This script assumes root permissions on a fresh Ubuntu Digital Ocean droplet
|
|
|
|
# with these recommended specs: 16 GB Memory / 8 Intel vCPUs / 320 GB Disk
|
|
|
|
|
|
|
|
# dismiss the popups
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
## https://docs.docker.com/engine/install/ubuntu/
|
2023-04-05 21:41:39 +00:00
|
|
|
## https://superuser.com/questions/518859/ignore-packages-that-are-not-currently-installed-when-using-apt-get-remove1
|
|
|
|
packages_to_remove="docker docker-engine docker.io containerd runc"
|
|
|
|
installed_packages_to_remove=""
|
|
|
|
for package_to_remove in $(echo $packages_to_remove); do
|
|
|
|
$(dpkg --info $package_to_remove &> /dev/null)
|
|
|
|
if [[ $? -eq 0 ]]; then
|
|
|
|
installed_packages_to_remove="$installed_packages_to_remove $package_to_remove"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Enable stop on error now, since we needed it off for the code above
|
|
|
|
set -euo pipefail ## https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
|
|
|
|
|
|
|
|
sudo apt -y remove $installed_packages_to_remove
|
|
|
|
|
|
|
|
sudo apt -y update
|
2023-04-05 20:59:37 +00:00
|
|
|
|
|
|
|
# laconic-so depends on jq
|
|
|
|
sudo apt -y install jq
|
|
|
|
# laconic-so depends on git
|
|
|
|
sudo apt -y install git
|
|
|
|
# curl used below
|
|
|
|
sudo apt -y install jq
|
|
|
|
# docker repo add depends on gnupg and updated ca-certificates
|
|
|
|
sudo apt -y install ca-certificates gnupg
|
|
|
|
|
|
|
|
# Add dockerco package repository
|
|
|
|
sudo mkdir -m 0755 -p /etc/apt/keyrings
|
|
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
|
|
|
echo \
|
|
|
|
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
|
|
|
|
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
|
|
|
|
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
|
|
|
|
# Penny in the update jar
|
|
|
|
sudo apt -y update
|
|
|
|
|
|
|
|
# Install docker
|
|
|
|
sudo apt -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
|
|
|
|
|
|
|
# Allow the current user to use Docker
|
|
|
|
sudo usermod -aG docker $USER
|
|
|
|
|
|
|
|
# install latest `laconic-so`
|
|
|
|
install_filename=${install_dir}/laconic-so
|
|
|
|
mkdir -p ${install_dir}
|
|
|
|
curl -L -o ${install_filename} https://github.com/cerc-io/stack-orchestrator/releases/latest/download/laconic-so
|
|
|
|
chmod +x ${install_filename}
|
|
|
|
|
|
|
|
# set here for this script
|
|
|
|
export PATH=$PATH:${install_dir}
|
|
|
|
|
|
|
|
# added to profile, manually running `source ~/.profile` is then required
|
|
|
|
echo "Adding this to ~/.profile: export PATH=$PATH:${install_dir}"
|
|
|
|
echo "export PATH=$PATH:${install_dir}" >> ~/.profile
|
|
|
|
|
|
|
|
# TODO: run this manually again after the script ends
|
|
|
|
# source ~/.profile
|
|
|
|
|
|
|
|
# verify operation
|
|
|
|
laconic-so version
|
|
|
|
|
|
|
|
echo "The Laconic Stack Orchestrator program has been installed at ${install_filename}"
|
|
|
|
echo "The directory ${install_dir} has been added to PATH in new shells via ~/.profile"
|
|
|
|
echo "Either open a new shell to use laconic-so on the PATH, or run this command in this shell:"
|
|
|
|
echo "export PATH=$PATH:${install_dir}"
|
|
|
|
|
|
|
|
# Message the user to check docker is working for them
|
|
|
|
echo "Please test that docker installed correctly by running this command:"
|
|
|
|
echo "docker run hello-world"
|
|
|
|
|