Fix issues reported by ansible-lint
This commit is contained in:
parent
a90840b1dc
commit
2e100d290f
59 changed files with 315 additions and 244 deletions
|
@ -5,12 +5,14 @@
|
|||
- tt-rss
|
||||
- news
|
||||
block:
|
||||
- import_tasks: prepare-common-service.yml
|
||||
- name: Import prepare tasks for common service
|
||||
ansible.builtin.import_tasks: tasks/prepare-common-service.yml
|
||||
|
||||
- name: Copy the nginx-config
|
||||
ansible.builtin.copy:
|
||||
src: nginx.conf
|
||||
dest: "{{ (service_path, 'nginx.conf') | path_join }}"
|
||||
mode: '0644'
|
||||
mode: "0644"
|
||||
|
||||
- import_tasks: start-common-service.yml
|
||||
- name: Import start tasks for common service
|
||||
ansible.builtin.import_tasks: tasks/start-common-service.yml
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
svc:
|
||||
domain: "rss.serguzim.me"
|
||||
domain: rss.serguzim.me
|
||||
name: tinytinyrss
|
||||
port: 80
|
||||
db:
|
||||
|
@ -39,7 +40,6 @@ compose:
|
|||
- app:/var/www/html
|
||||
networks:
|
||||
default:
|
||||
|
||||
updater:
|
||||
image: cthulhoo/ttrss-fpm-pgsql-static
|
||||
restart: always
|
||||
|
@ -54,4 +54,3 @@ compose:
|
|||
default:
|
||||
volumes:
|
||||
app:
|
||||
|
||||
|
|
Reference in a new issue