2023-08-16 13:48:11 +10:00
|
|
|
#!/bin/bash
|
|
|
|
# Initial install for all prerequisites for the project.
|
|
|
|
# This makes it quicker to get each site up and running.
|
|
|
|
|
2023-08-25 11:35:22 +10:00
|
|
|
# Stop kernel prompts
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
export NEEDRESTART_MODE=a
|
|
|
|
echo "Dpkg::Options { \"--force-confdef\"; \"--force-confold\"; };" | sudo tee /etc/apt/apt.conf.d/local
|
|
|
|
|
|
|
|
KERNEL_VERSION=$(uname -r)
|
|
|
|
sudo apt-mark hold linux-image-generic linux-headers-generic linux-generic linux-image-$KERNEL_VERSION linux-headers-$KERNEL_VERSION
|
2023-08-16 13:48:11 +10:00
|
|
|
|
|
|
|
# Install Docker
|
2023-08-25 11:35:04 +10:00
|
|
|
sudo apt install apt-transport-https ca-certificates curl software-properties-common python3-pip nginx -y
|
2023-08-16 13:48:11 +10:00
|
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
|
|
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
sudo apt update
|
|
|
|
apt-cache policy docker-ce
|
2023-08-25 11:35:04 +10:00
|
|
|
sudo apt install docker-ce docker-compose -y
|
2023-08-16 13:48:11 +10:00
|
|
|
|
|
|
|
# Install python prerequisites
|
2023-08-17 13:10:12 +10:00
|
|
|
python3 -m pip install -r requirements.txt
|
|
|
|
cp .env.example .env
|
2023-08-17 13:27:57 +10:00
|
|
|
chmod +x wp.sh tlsa.sh
|
2023-08-25 11:35:04 +10:00
|
|
|
|
|
|
|
# Pull docker images to save time later
|
|
|
|
docker pull mysql:5.7 &
|
|
|
|
docker pull wordpress:latest &
|
|
|
|
wait
|