mirror of
https://github.com/famedly/ansible-collection-services
synced 2024-11-10 05:54:14 +00:00
chore(matomo): fix lints
This commit is contained in:
parent
aee85cbac2
commit
f832c40607
5 changed files with 15 additions and 15 deletions
|
@ -1,11 +1,11 @@
|
|||
---
|
||||
redis_version: "6.2.7"
|
||||
redis_docker_image: "docker.io/redis:{{ redis_version }}-alpine"
|
||||
redis_docker_labels: {} #override
|
||||
redis_docker_labels: {} # override
|
||||
|
||||
mariadb_version: "10.7.3"
|
||||
mariadb_docker_image: "docker.io/mariadb:{{ mariadb_version }}"
|
||||
mariadb_docker_labels: {} #override
|
||||
mariadb_docker_labels: {} # override
|
||||
|
||||
# matomo_version has no impact as the application files are persisted
|
||||
# as a docker volume.
|
||||
|
@ -15,4 +15,4 @@ matomo_db_name: "matomo"
|
|||
matomo_db_user: "matomo"
|
||||
matomo_docker_image: "docker.io/matomo:{{ matomo_version }}-apache"
|
||||
matomo_docker_ports: []
|
||||
matomo_docker_labels: {} #override
|
||||
matomo_docker_labels: {} # override
|
||||
|
|
|
@ -4,12 +4,12 @@ galaxy_info:
|
|||
|
||||
license: AGPLv3
|
||||
|
||||
min_ansible_version: 2.5
|
||||
min_ansible_version: "2.5"
|
||||
|
||||
platforms:
|
||||
- name: Debian
|
||||
versions:
|
||||
- all
|
||||
- name: Debian
|
||||
versions:
|
||||
- all
|
||||
|
||||
galaxy_tags: []
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: launch redis
|
||||
become: yes
|
||||
- name: Launch redis
|
||||
become: true
|
||||
docker_container:
|
||||
name: redis
|
||||
image: "{{ redis_docker_image }}"
|
||||
|
@ -10,8 +10,8 @@
|
|||
- /opt/redis/data:/data
|
||||
restart_policy: unless-stopped
|
||||
|
||||
- name: launch mariadb
|
||||
become: yes
|
||||
- name: Launch mariadb
|
||||
become: true
|
||||
docker_container:
|
||||
name: mariadb
|
||||
image: "{{ mariadb_docker_image }}"
|
||||
|
@ -25,8 +25,8 @@
|
|||
MYSQL_PASSWORD: "{{ matomo_db_password }}"
|
||||
restart_policy: unless-stopped
|
||||
|
||||
- name: launch matomo
|
||||
become: yes
|
||||
- name: Launch matomo
|
||||
become: true
|
||||
docker_container:
|
||||
name: matomo
|
||||
image: "{{ matomo_docker_image }}"
|
||||
|
|
|
@ -11,8 +11,7 @@ galaxy_info:
|
|||
platforms:
|
||||
- name: Debian
|
||||
versions:
|
||||
- "9"
|
||||
- "10"
|
||||
- all
|
||||
|
||||
galaxy_tags: []
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
- name: Template laravel env
|
||||
copy:
|
||||
dest: "{{ snipe_it_config_file }}"
|
||||
mode: "0664"
|
||||
content: |
|
||||
{% for kv in snipe_it_config_merged | combine(snipe_it_container_env) | dict2items %}
|
||||
{{ kv.key }}="{{ kv.value }}"
|
||||
|
|
Loading…
Reference in a new issue