From 37f0f3850aac454112109d9ae5d6e133860fe675 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Thu, 21 Dec 2023 04:58:39 -0700 Subject: [PATCH] Minor fixes to compose file --- .../Docker Compose/Custom Containers/Git Repo Updater.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Container Documentation/Docker/Docker Compose/Custom Containers/Git Repo Updater.md b/Container Documentation/Docker/Docker Compose/Custom Containers/Git Repo Updater.md index 750ef00..b6e001c 100644 --- a/Container Documentation/Docker/Docker Compose/Custom Containers/Git Repo Updater.md +++ b/Container Documentation/Docker/Docker Compose/Custom Containers/Git Repo Updater.md @@ -15,12 +15,12 @@ services: - GIT_USERNAME=${GIT_USERNAME} - GIT_PASSWORD=${GIT_PASSWORD} - TZ=America/Denver - image: git.cyberstrawberry.net/container-registry/git-repo-updater:latest + image: git.bunny-lab.io/container-registry/git-repo-updater:latest volumes: #This folder is where the repository will be downloaded and updated - it needs a unique folder name. - ${TEMP_DIR}:/root/Repo_Watcher/repo #This is where you want the git repository data to be copied to (e.g. a server's data folder) - - ${DESTINATION}:/DATA + - ${COPY_DIR}:/DATA restart: always ``` @@ -28,7 +28,7 @@ services: REPO_URL=https://git.cyberstrawberry.net/cyberstrawberry/placeholder.git NTFY_URL=https://ntfy.cyberstrawberry.net/git-repo-updater TEMP_DIR=/srv/containers/git-repo-updater/REPO-NAME -DESTINATION=/srv/containers/server-name/data +COPY_DIR=/srv/containers/server-name/data GIT_USERNAME=nicole.rappe GIT_PASSWORD=USE-AN-APP-PASSWORD ```