Compare commits

...

8 Commits

5 changed files with 16 additions and 10 deletions

View File

@ -1,12 +1,13 @@
namespace: finallycoffee
name: nextcloud
version: "0.8.0"
version: "0.8.1"
readme: README.md
authors:
- transcaffeine <transcaffeine@finally.coffee>
description: Installing and configuring nextcloud (and related apps/services) using docker
dependencies:
"community.docker": "^4.0.0"
"community.general": "^10.0.0"
"community.docker": "^4.6.0"
license_file: LICENSE.md
build_ignore:
- '*.tar.gz'

View File

@ -12,9 +12,12 @@ nc_ldap_config_keys:
ldapBackupHost: "{{ nc_ldap_config_backup_host }}"
ldapBackupPort: "{{ nc_ldap_config_backup_port }}"
ldapOverrideMainServer: "{{ nc_ldap_config_override_main_server }}"
ldapBase: "{{ nc_ldap_config_base_dn }}"
ldapBaseUsers: "{{ nc_ldap_config_base_dn_users }}"
ldapBaseGroups: "{{ nc_ldap_config_base_dn_groups }}"
ldapBase:
- "{{ nc_ldap_config_base_dn }}"
ldapBaseUsers:
- "{{ nc_ldap_config_base_dn_users }}"
ldapBaseGroups:
- "{{ nc_ldap_config_base_dn_groups }}"
ldapAgentName: "{{ nc_ldap_config_agent_name }}"
ldapAgentPassword: "{{ nc_ldap_config_agent_password }}"
ldapTLS: "{{ nc_ldap_config_tls }}"
@ -30,8 +33,10 @@ nc_ldap_config_keys:
ldapAttributesForUserSearch: "{{ nc_ldap_config_attributes_for_user_search }}"
ldapGroupFilter: "{{ nc_ldap_config_group_filter }}"
ldapGroupFilterMode: "{{ nc_ldap_config_group_filter_mode }}"
ldapGroupFilterObjectclass: "{{ nc_ldap_config_group_filter_objectclass }}"
ldapGroupFilterGroups: "{{ nc_ldap_config_group_filter_groups }}"
ldapGroupFilterObjectclass:
- "{{ nc_ldap_config_group_filter_objectclass }}"
ldapGroupFilterGroups:
- "{{ nc_ldap_config_group_filter_groups }}"
ldapGroupMemberAssocAttr: "{{ nc_ldap_config_group_member_assoc_attr }}"
ldapGroupDisplayName: "{{ nc_ldap_config_group_displayname }}"
ldapAttributesForGroupSearch: "{{ nc_ldap_config_attributes_for_group_search }}"

View File

@ -1,5 +1,5 @@
---
nextcloud_nginx_version: "1.27.4"
nextcloud_nginx_version: "1.28.0"
nextcloud_nginx_basepath: /opt/nextcloud-nginx
nextcloud_nginx_config: "{{ nextcloud_nginx_basepath }}/nextcloud.conf"
nextcloud_nginx_servernames: ~

View File

@ -1,6 +1,6 @@
---
onlyoffice_documentserver_user: "onlyoffice"
onlyoffice_documentserver_version: "8.3.2"
onlyoffice_documentserver_version: "8.3.3"
onlyoffice_documentserver_state: present
onlyoffice_documentserver_deployment_method: docker

View File

@ -1,5 +1,5 @@
---
nextcloud_version: "31.0.3"
nextcloud_version: "31.0.6"
nextcloud_user: nextcloud
nextcloud_basepath: /opt/nextcloud
nextcloud_config_path: "{{ nextcloud_basepath }}/config"