mirror of
https://github.com/jung-geun/DynamicDNS-SSL.git
synced 2025-12-19 20:44:40 +09:00
Refactor Dockerfile to use Python 3.11-slim
This commit is contained in:
@@ -1,19 +1,36 @@
|
||||
#!/bin/bash
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||
|
||||
@echo off
|
||||
echo "Certbot and Cloudflare API tools installation"
|
||||
sudo apt update
|
||||
sudo apt install -y certbot python3-certbot-dns-cloudflare jq
|
||||
echo -e "Certbot and Cloudflare API tools installation started. \n"
|
||||
sudo apt -qq update
|
||||
PKG_LIST=(certbot python3-certbot-dns-cloudflare jq)
|
||||
for pkg in ${PKG_LIST[@]}; do
|
||||
dpkg -l | grep -q $pkg
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "$pkg is already installed."
|
||||
read -p "Do you want to reinstall it? (y/N): " reinstall
|
||||
reinstall=${reinstall:-n}
|
||||
if [ "$reinstall" == "y" ]; then
|
||||
sudo apt install --reinstall -y $pkg
|
||||
fi
|
||||
echo -e "\n\n"
|
||||
else
|
||||
echo "$pkg is not installed."
|
||||
sudo apt install -y $pkg
|
||||
fi
|
||||
done
|
||||
|
||||
sudo mkdir -p /app/cloudflare-ddns
|
||||
sudo cp -r $DIR/../* /app/cloudflare-ddns
|
||||
if [ -f /app/cloudflare-ddns/config/env.json ]; then
|
||||
read -p "Environment configuration file already exists. Do you want to overwrite it? (y/n): " overwrite
|
||||
read -p "Environment configuration file already exists. Do you want to overwrite it? (y/N): " overwrite
|
||||
overwrite=${overwrite:-n}
|
||||
if [ "$overwrite" == "y" ]; then
|
||||
sudo mv /app/cloudflare-ddns/config/env.json /app/cloudflare-ddns/config/env.json.bak
|
||||
sudo cp $DIR/../config/env_example.json /app/cloudflare-ddns/config/env.json
|
||||
sudo chmod 600 /app/cloudflare-ddns/config/env.json
|
||||
else
|
||||
echo -e "Environment configuration file is not overwritten. \n"
|
||||
fi
|
||||
else
|
||||
sudo mkdir -p /app/cloudflare-ddns/config
|
||||
@@ -21,6 +38,6 @@ else
|
||||
sudo chmod 600 /app/cloudflare-ddns/config/env.json
|
||||
fi
|
||||
sudo cp $DIR/../cron/cronjob-ddns /etc/cron.d/cloudflare-ddns
|
||||
echo "Please modify the environment configuration file and save it in the /app/cloudflare-ddns/config/env.json path."
|
||||
echo -e "Please modify the environment configuration file and save it in the /app/cloudflare-ddns/config/env.json path. \n"
|
||||
|
||||
echo "Certbot and Cloudflare API tools installation completed."
|
||||
echo -e "Certbot and Cloudflare API tools installation completed. \n"
|
||||
Reference in New Issue
Block a user