Compare commits

..

16 Commits

Author SHA1 Message Date
aa8cb40c34 meta: bump galaxy version to 0.8.0, require 'community.docker@^4.0.0' 2025-04-02 22:03:13 +02:00
18389388ab update(nginx): bump version to 1.27.4 2025-03-22 11:04:46 +01:00
e76cf67277 update(server): bump version to 31.0.1 2025-03-19 18:42:27 +01:00
8764acb3c3 update(server): bump version to 31.0.1 2025-03-15 19:04:07 +01:00
87d7e8285f update(nextcloud): bump version to 31.0.0 2025-02-25 18:11:48 +01:00
eea141b844 update(nextcloud): bump version to 30.0.6 2025-02-21 16:48:06 +01:00
4969faeb70 meta: bump galaxy version to 0.7.3 2025-01-30 15:38:28 +01:00
00fa76be14 update(nginx_fpm_proxy): bump nginx version to 1.27.3 2025-01-30 15:37:37 +01:00
23f70c9f26 update(server): bump version to 30.0.5 2025-01-20 21:09:35 +01:00
4f7cd41d72 update(server): bump version to 30.0.4 2024-12-22 20:18:40 +01:00
bb0e1f3ad5 meta: bump collection version to 0.7.2 2024-11-30 19:31:50 +01:00
12ac351254 chore(server): 'purge_networks' option for 'docker_container' module is removed 2024-11-30 19:29:26 +01:00
dbb6fe15ce chore(server): support setting /etc/hosts in container 2024-11-26 20:19:20 +01:00
3616ad5f45 update(server): bump version to 30.0.2 2024-11-25 21:46:16 +01:00
0a3b32c823 fix(server): use correct jinja2 tags 2024-11-02 12:08:08 +01:00
e2e8d84c13 chore(nginx_fpm_proxy): provide defaults for not defined variables 2024-10-26 19:01:08 +02:00
6 changed files with 11 additions and 14 deletions

View File

@ -1,12 +1,12 @@
namespace: finallycoffee namespace: finallycoffee
name: nextcloud name: nextcloud
version: 0.7.1 version: "0.8.0"
readme: README.md readme: README.md
authors: authors:
- transcaffeine <transcaffeine@finally.coffee> - transcaffeine <transcaffeine@finally.coffee>
description: Installing and configuring nextcloud (and related apps/services) using docker description: Installing and configuring nextcloud (and related apps/services) using docker
dependencies: dependencies:
"community.docker": "^3.0.0" "community.docker": "^4.0.0"
license_file: LICENSE.md license_file: LICENSE.md
build_ignore: build_ignore:
- '*.tar.gz' - '*.tar.gz'
@ -14,5 +14,5 @@ repository: https://git.finally.coffee/finallycoffee/nextcloud
issues: https://codeberg.org/finallycoffee/ansible-collection-nextcloud/issues issues: https://codeberg.org/finallycoffee/ansible-collection-nextcloud/issues
tags: tags:
- nextcloud - nextcloud
- nextcloud-apps - nextcloud_apps
- docker - docker

View File

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

View File

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

View File

@ -1,6 +1,5 @@
--- ---
nextcloud_version: "31.0.2"
nextcloud_version: 30.0.1
nextcloud_user: nextcloud nextcloud_user: nextcloud
nextcloud_basepath: /opt/nextcloud nextcloud_basepath: /opt/nextcloud
nextcloud_config_path: "{{ nextcloud_basepath }}/config" nextcloud_config_path: "{{ nextcloud_basepath }}/config"
@ -52,7 +51,6 @@ nextcloud_container_extra_labels: {}
nextcloud_container_extra_environment: {} nextcloud_container_extra_environment: {}
nextcloud_container_networks: ~ nextcloud_container_networks: ~
nextcloud_container_purge_other_networks: true
nextcloud_paths: nextcloud_paths:
- path: "{{ nextcloud_config_path }}" - path: "{{ nextcloud_config_path }}"

View File

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

View File

@ -118,8 +118,8 @@
volumes: "{{ nextcloud_container_volumes }}" volumes: "{{ nextcloud_container_volumes }}"
labels: "{{ nextcloud_container_labels }}" labels: "{{ nextcloud_container_labels }}"
env: "{{ nextcloud_container_env }}" env: "{{ nextcloud_container_env }}"
etc_hosts: "{{ nextcloud_container_etc_hosts | default(omit, true) }}"
networks: "{{ nextcloud_container_networks | default(omit, true) }}" networks: "{{ nextcloud_container_networks | default(omit, true) }}"
purge_networks: "{{ nextcloud_container_purge_other_networks }}"
restart_policy: "{{ nextcloud_container_restart_policy }}" restart_policy: "{{ nextcloud_container_restart_policy }}"
state: started state: started