Markus Pesch
2b7dd6b706
All checks were successful
continuous-integration/drone/push Build is passing
17 lines
546 B
Django/Jinja
17 lines
546 B
Django/Jinja
#jinja2: lstrip_blocks: "True", trim_blocks: "True"
|
|
version: '3'
|
|
services:
|
|
renovate:
|
|
environment:
|
|
RENOVATE_CONFIG_FILE: /usr/src/app/config.json
|
|
{% for key, value in renovate_container_environment.items() %}
|
|
{{ key | upper }}: {{ value | quote }}
|
|
{% endfor %}
|
|
image: {{ renovate_container_image }}
|
|
user: {{ renovate_container_user | default('1000:977') }}
|
|
volumes:
|
|
- ./config.json:/usr/src/app/config.json
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /tmp:/tmp:rw
|