mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2024-11-12 15:44:13 -08:00
44 lines
1.7 KiB
Bash
44 lines
1.7 KiB
Bash
#!/bin/bash
|
|
if ! command -v docker &> /dev/null
|
|
then
|
|
echo -e "\e[32mINFO: Install Docker...\e[0m"
|
|
# Add Docker's official GPG key:
|
|
apt-get update -y
|
|
apt-get install ca-certificates curl -y
|
|
install -m 0755 -d /etc/apt/keyrings
|
|
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
|
|
chmod a+r /etc/apt/keyrings/docker.asc
|
|
# Add the repository to Apt sources:
|
|
echo \
|
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
|
|
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
|
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
apt-get update -y
|
|
apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
|
|
fi
|
|
echo -e "\e[32mINFO: Docker is installed!\e[0m"
|
|
if [ -e "./TC2-BBS-mesh-docker/docker-compose.yaml" ]; then
|
|
echo -e "\e[32mINFO: TC2-BBS-mesh-docker folder is already present!\e[0m"
|
|
else
|
|
echo -e "\e[32mINFO: Installing TC2-BBS-mesh Docker Container in $(pwd)/TC2-BBS-mesh-docker ...\e[0m"
|
|
mkdir ./TC2-BBS-mesh-docker
|
|
cd TC2-BBS-mesh-docker
|
|
cat << EOF > docker-compose.yaml
|
|
services:
|
|
tc2-bbs-mesh:
|
|
image: thealhu/tc2-bbs-mesh:latest
|
|
restart: always
|
|
volumes:
|
|
- ./config:/config
|
|
container_name: tc2-bbs-mesh
|
|
# -- These parameters are optional and can be uncommented if needed. --
|
|
# devices:
|
|
# - /dev/ttyUSB0:/dev/ttyUSB0
|
|
# - /dev/ttyACM0:/dev/ttyACM0
|
|
EOF
|
|
docker compose up
|
|
echo "" && echo ""
|
|
echo -e "\e[32mINFO: The TC2-BBS-mesh Docker container is now installed in $(pwd)/\e[0m"
|
|
echo -e "\e[32mINFO: Please make your changes to the configuration and then run ""$""docker compose up -d in $(pwd)/\e[0m"
|
|
fi
|