Add debian setup script #501
@ -6,7 +6,7 @@ Stack Orchestrator allows building and deployment of a Laconic Stack on a single
|
|||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
**To get started quickly** on a fresh Ubuntu instance (e.g, Digital Ocean); [try this script](./scripts/quick-install-ubuntu.sh). **WARNING:** always review scripts prior to running them so that you know what is happening on your machine.
|
**To get started quickly** on a fresh Ubuntu instance (e.g, Digital Ocean); [try this script](./scripts/quick-install-linux.sh). **WARNING:** always review scripts prior to running them so that you know what is happening on your machine.
|
||||||
|
|
||||||
For any other installation, follow along below and **adapt these instructions based on the specifics of your system.**
|
For any other installation, follow along below and **adapt these instructions based on the specifics of your system.**
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ ssh root@IP
|
|||||||
2. Get the install script, give it executable permissions, and run it:
|
2. Get the install script, give it executable permissions, and run it:
|
||||||
|
|
||||||
```
|
```
|
||||||
curl -o install.sh https://raw.githubusercontent.com/cerc-io/stack-orchestrator/main/scripts/quick-install-ubuntu.sh
|
curl -o install.sh https://raw.githubusercontent.com/cerc-io/stack-orchestrator/main/scripts/quick-install-linux.sh
|
||||||
```
|
```
|
||||||
```
|
```
|
||||||
chmod +x install.sh
|
chmod +x install.sh
|
||||||
|
@ -28,12 +28,28 @@ fi
|
|||||||
# Check python3 is available
|
# Check python3 is available
|
||||||
# Check machine resources are sufficient
|
# Check machine resources are sufficient
|
||||||
|
|
||||||
|
# Determine if we are on Debian or Ubuntu
|
||||||
|
linux_distro=$(lsb_release -a 2>/dev/null | grep "^Distributor ID:" | cut -f 2)
|
||||||
|
case $linux_distro in
|
||||||
|
Debian)
|
||||||
|
echo "Installing docker for Debian"
|
||||||
|
;;
|
||||||
|
Ubuntu)
|
||||||
|
echo "Installing docker for Ubuntu"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "ERROR: Detected unknown distribution $linux_distro, can't install docker"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# dismiss the popups
|
# dismiss the popups
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
## https://docs.docker.com/engine/install/ubuntu/
|
## https://docs.docker.com/engine/install/ubuntu/
|
||||||
|
## https://docs.docker.com/engine/install/debian/
|
||||||
## https://superuser.com/questions/518859/ignore-packages-that-are-not-currently-installed-when-using-apt-get-remove1
|
## 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"
|
packages_to_remove="docker docker-engine docker.io containerd runc docker-compose docker-doc podman-docker"
|
||||||
installed_packages_to_remove=""
|
installed_packages_to_remove=""
|
||||||
for package_to_remove in $(echo $packages_to_remove); do
|
for package_to_remove in $(echo $packages_to_remove); do
|
||||||
$(dpkg --info $package_to_remove &> /dev/null)
|
$(dpkg --info $package_to_remove &> /dev/null)
|
||||||
@ -65,10 +81,25 @@ sudo apt -y install curl
|
|||||||
sudo apt -y install ca-certificates gnupg
|
sudo apt -y install ca-certificates gnupg
|
||||||
|
|
||||||
# Add dockerco package repository
|
# Add dockerco package repository
|
||||||
sudo mkdir -m 0755 -p /etc/apt/keyrings
|
# For reasons not obvious, the dockerco instructions for installation on
|
||||||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
# Debian and Ubuntu are slightly different here
|
||||||
|
case $linux_distro in
|
||||||
|
Debian)
|
||||||
|
sudo install -m 0755 -d /etc/apt/keyrings
|
||||||
|
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||||
|
sudo chmod a+r /etc/apt/keyrings/docker.gpg
|
||||||
|
;;
|
||||||
|
Ubuntu)
|
||||||
|
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 "ERROR: Detected unknown distribution $linux_distro, can't install docker"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
echo \
|
echo \
|
||||||
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
|
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/${linux_distro,,} \
|
||||||
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
|
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
|
||||||
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
|
|
Loading…
Reference in New Issue
Block a user