mirror of
https://github.com/yanhao98/renovate-example.git
synced 2025-07-13 06:30:49 +08:00
b48d9056a6da598c78c261e0dbdbd2a6e221996b
Renovate
Gitea 仓库配置1
- 创建一个
Gitea
的账号。 - 创建该账号的
Personal Access Token
。 - 增加该账号为协作者。
- Github 的
Token
不需要勾选任何权限。
启动 Renovate
docker-compose.yml
name: renovate
volumes:
tmp:
driver: local
services:
git.1-h.cc:
# docker exec -it renovate-git.1-h.cc-1 docker-entrypoint.sh renovate
pull_policy: always
restart: always
environment:
- LOG_LEVEL=debug
- TZ=Asia/Shanghai
- RENOVATE_AUTODISCOVER=true
- RENOVATE_PLATFORM=gitea
- RENOVATE_INCLUDE_MIRRORS=true
#
- RENOVATE_ENDPOINT=❗️https://git.1-h.cc
- RENOVATE_TOKEN=❗️
- GITHUB_COM_TOKEN=❗️
volumes:
- tmp:/tmp
image: renovate/renovate:38
entrypoint: /bin/bash
command: -c "while true; do docker-entrypoint.sh renovate; sleep 8h; done"
配置参考
Description
Languages
JSON5
100%