12 lines
530 B
YAML
12 lines
530 B
YAML
version: '3.3'
|
|
services:
|
|
git-repo-updater:
|
|
privileged: true
|
|
container_name: git-repo-updater
|
|
image: git.cyberstrawberry.net/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
|
|
restart: always |