├── .dockerignore ├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── trivy.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .yarnrc ├── Dockerfile ├── LICENSE ├── README.md ├── bin └── docker-entrypoint.sh ├── package.json └── renovate.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/.github/workflows/trivy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | /config.js 4 | yarn.lock 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/.yarnrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/README.md -------------------------------------------------------------------------------- /bin/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/bin/docker-entrypoint.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renovatebot/docker-renovate-full/HEAD/renovate.json --------------------------------------------------------------------------------