fix: docker-compose bin path
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
4ff78f6356
commit
b32cf0eb7d
@ -10,6 +10,8 @@ renovate_config: []
|
||||
|
||||
renovate_dir: /srv/docker/renovate
|
||||
|
||||
renovate_docker_compose_bin: /usr/bin/docker-compose
|
||||
|
||||
renovate_container_environment: []
|
||||
# GITHUB_COM_TOKEN: ""
|
||||
# NODE_TLS_REJECT: ""
|
||||
|
@ -12,5 +12,5 @@ OnFailure=status-email@%n.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/docker-compose up
|
||||
ExecStart={{ renovate_docker_compose_bin }} up
|
||||
WorkingDirectory={{ renovate_dir }}
|
@ -4,9 +4,11 @@ services:
|
||||
renovate:
|
||||
environment:
|
||||
RENOVATE_CONFIG_FILE: /usr/src/app/config.json
|
||||
{% if renovate_container_environment is defined and renovate_container_environment | length > 0 %}
|
||||
{% for key, value in renovate_container_environment.items() %}
|
||||
{{ key | upper }}: {{ value | quote }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
image: {{ renovate_container_image }}
|
||||
user: {{ renovate_container_user | default('1000:977') }}
|
||||
volumes:
|
||||
|
Loading…
Reference in New Issue
Block a user