virli/tutorial/devops/renovate-cmd.md
Pierre-Olivier Mercier 25aef1af17
All checks were successful
continuous-integration/drone/push Build is passing
New spelling fixes
2026-04-10 16:19:05 +07:00

619 B

Exportez dans une variable d'environnement le token d'accès généré qui vous est affiché par Gitea :

```shell export RENOVATE_TOKEN=a0b1c2d3e4f5A6B7C8D9 ```

La commande que nous allons utiliser pour lancer Renovatebot est la suivante :

```shell docker container run --name renovate --network my_ci_net \ -e RENOVATE_ENDPOINT="http://gitea:3000/api/v1/" -e RENOVATE_PLATFORM=gitea \ -e RENOVATE_TOKEN -e RENOVATE_GIT_AUTHOR="Renovatebot " \ -e RENOVATE_AUTODISCOVER=true -e RENOVATE_LOG_LEVEL=info -d \ renovate/renovate ```