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 ```