Compare commits

...

5 Commits

4 changed files with 10 additions and 6 deletions

View File

@ -12,3 +12,7 @@ build_ignore:
- '*.tar.gz'
repository: https://git.finally.coffee/finallycoffee/nextcloud
issues: https://codeberg.org/finallycoffee/ansible-collection-nextcloud/issues
tags:
- nextcloud
- nextcloud-apps
- docker

View File

@ -29,9 +29,9 @@
env: "{{ nextcloud_nginx_container_env }}"
name: "{{ nextcloud_nginx_container_name }}"
image: "{{ nextcloud_nginx_container_image_ref }}"
ports: "{{ nextcloud_nginx_container_ports }}"
ports: "{{ nextcloud_nginx_container_ports | default(omit, true) }}"
volumes: "{{ nextcloud_nginx_container_volumes }}"
labels: "{{ nextcloud_nginx_container_labels }}"
networks: "{{ nextcloud_nginx_container_networks | default(omit) }}"
labels: "{{ nextcloud_nginx_container_labels | default(omit, true) }}"
networks: "{{ nextcloud_nginx_container_networks | default(omit, true) }}"
restart_policy: "{{ nextcloud_nginx_container_restart_policy }}"
state: started

View File

@ -1,6 +1,6 @@
---
nextcloud_version: 30.0.0
nextcloud_version: 30.0.2
nextcloud_user: nextcloud
nextcloud_basepath: /opt/nextcloud
nextcloud_config_path: "{{ nextcloud_basepath }}/config"

View File

@ -28,9 +28,9 @@
value_type: >-
{% if value is boolean %}
boolean
{% elsif value is integer %}
{% elif value is integer %}
integer
{% elsif value is float %}
{% elif value is float %}
float
{% else %}
string