feat(roles): Add auto updating to some roles
Miniflux, searx, shaarli and wallabag will be automatically updated by shepherd.
This commit is contained in:
parent
9f3274dae7
commit
83613f6d86
8 changed files with 33 additions and 4 deletions
|
|
@ -8,6 +8,8 @@ miniflux_use_https: true
|
|||
# the subdomain link miniflux will be reachable under
|
||||
subdomain_alias: rss
|
||||
|
||||
miniflux_autoupdate: true
|
||||
|
||||
# Should ideally be overwritten in encrypted group/host vars
|
||||
miniflux_admin_username: myadmin
|
||||
miniflux_admin_password: mypassword
|
||||
|
|
|
|||
|
|
@ -24,6 +24,11 @@ services:
|
|||
{% else %}
|
||||
- "BASE_URL={{ (miniflux_use_https == True) | ternary('https', 'http') }}://localhost/{{ (subdomain_alias is not undefined and not none) | ternary(subdomain_alias, stack_name) }}"
|
||||
{% endif %}
|
||||
{% if miniflux_autoupdate is defined and miniflux_autoupdate %}
|
||||
deploy:
|
||||
labels:
|
||||
- shepherd.autoupdate=true
|
||||
{% endif %}
|
||||
|
||||
db:
|
||||
image: postgres:11
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue