forked from CCCHH/ansible-infra
Sets up Renovate using Docker and systemd service and timer to run regularly. Also add accompanying host group and playbook play.
10 lines
225 B
Desktop File
10 lines
225 B
Desktop File
[Unit]
|
|
Description=renovate
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/usr/bin/docker run --rm \
|
|
-v "/etc/renovate/config.js:/usr/src/app/config.js" \
|
|
renovate/renovate
|