Updated Approach to Scheduling

This commit is contained in:
Nicole Rappe 2023-09-22 00:48:25 -06:00
parent 4fdaf788b5
commit 9038a7c9b2
4 changed files with 47 additions and 49 deletions

View File

@ -2,17 +2,13 @@ FROM ubuntu:latest
# Install necessary packages # Install necessary packages
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y git curl cron rsync apt-get install -y git curl rsync
# Add script and cronjob # Add script
COPY repo_watcher.sh /root/Repo_Watcher/repo_watcher.sh COPY repo_watcher.sh /root/Repo_Watcher/repo_watcher.sh
COPY crontab.txt /crontab.txt
# Make script executable # Make script executable
RUN chmod +x /root/Repo_Watcher/repo_watcher.sh RUN chmod +x /root/Repo_Watcher/repo_watcher.sh
# Apply cron job # Start script
RUN crontab /crontab.txt CMD ["/bin/bash", "-c", "/root/Repo_Watcher/repo_watcher.sh"]
# Start cron in foreground
CMD ["cron", "-f"]

View File

@ -1,4 +0,0 @@
**Basic Docker Run Command**:
```
docker run -e REPO_URL='https://your.git.repo.url' -e COPY_DIR='/your/copy/dir' -e NTFY_URL='https://your.ntfy.url' -e GIT_USERNAME='your_username' -e GIT_PASSWORD='your_password' git_repo_updater
```

View File

@ -1 +0,0 @@
* * * * * /bin/bash /root/Repo_Watcher/repo_watcher.sh

View File

@ -1,45 +1,52 @@
#!/bin/bash #!/bin/bash
# Fetch environment variables while true; do
repo_url=$REPO_URL
copy_dir=$COPY_DIR
ntfy_url=$NTFY_URL
git_username=$GIT_USERNAME
git_password=$GIT_PASSWORD
# Set Git credentials # Fetch environment variables
git config --global credential.helper 'store --file /tmp/git-credentials' repo_url=$REPO_URL
echo "url=$repo_url" > /tmp/git-credentials copy_dir=$COPY_DIR
echo "username=$git_username" >> /tmp/git-credentials ntfy_url=$NTFY_URL
echo "password=$git_password" >> /tmp/git-credentials git_username=$GIT_USERNAME
git_password=$GIT_PASSWORD
# Navigate to the watcher directory # Set Git credentials
cd /root/Repo_Watcher git config --global credential.helper 'store --file /tmp/git-credentials'
echo "url=$repo_url" > /tmp/git-credentials
echo "username=$git_username" >> /tmp/git-credentials
echo "password=$git_password" >> /tmp/git-credentials
# Clone the repo if it doesn't exist # Navigate to the watcher directory
if [ ! -d "repo" ]; then cd /root/Repo_Watcher
git clone $repo_url repo
fi
cd repo # Clone the repo if it doesn't exist
if [ ! -d "repo" ]; then
git clone $repo_url repo
fi
# Fetch the latest changes cd repo
git fetch origin main
# Check if the local repository is behind the remote # Fetch the latest changes
LOCAL=$(git rev-parse @) git fetch origin main
REMOTE=$(git rev-parse @{u})
BASE=$(git merge-base @ @{u})
if [ $LOCAL = $REMOTE ]; then # Check if the local repository is behind the remote
echo "Up-to-date" LOCAL=$(git rev-parse @)
elif [ $LOCAL = $BASE ]; then REMOTE=$(git rev-parse @{u})
echo "Need to pull" BASE=$(git merge-base @ @{u})
git pull origin main
rsync -av --delete ./ $copy_dir if [ $LOCAL = $REMOTE ]; then
curl -d "Data updated from Git repo" $ntfy_url echo "Up-to-date"
elif [ $REMOTE = $BASE ]; then elif [ $LOCAL = $BASE ]; then
echo "Need to push" echo "Need to pull"
else git pull origin main
echo "Data diverged" rsync -av --delete ./ $copy_dir
fi curl -d "Data updated from Git repo" $ntfy_url
elif [ $REMOTE = $BASE ]; then
echo "Need to push"
else
echo "Data diverged"
fi
# Wait for 5 seconds before the next iteration
sleep 5
done