12 lines
388 B
YAML
12 lines
388 B
YAML
version: '3.3'
|
|
services:
|
|
git-repo-updater:
|
|
privileged: true
|
|
container_name: git-repo-updater
|
|
env_file:
|
|
- stack.env
|
|
image: git.bunny-lab.io/container-registry/git-repo-updater:latest
|
|
volumes:
|
|
- /srv/containers:/srv/containers
|
|
- /srv/containers/git-repo-updater/Repo_Cache:/srv/Repo_Cache
|
|
restart: always |