Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
bb0e1f3ad5
|
|||
12ac351254
|
|||
dbb6fe15ce
|
|||
3616ad5f45
|
|||
0a3b32c823
|
|||
e2e8d84c13
|
|||
6027db3f5f
|
|||
8eae295b83
|
@ -1,6 +1,6 @@
|
|||||||
namespace: finallycoffee
|
namespace: finallycoffee
|
||||||
name: nextcloud
|
name: nextcloud
|
||||||
version: 0.7.1
|
version: 0.7.2
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- transcaffeine <transcaffeine@finally.coffee>
|
- transcaffeine <transcaffeine@finally.coffee>
|
||||||
@ -12,3 +12,7 @@ build_ignore:
|
|||||||
- '*.tar.gz'
|
- '*.tar.gz'
|
||||||
repository: https://git.finally.coffee/finallycoffee/nextcloud
|
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:
|
||||||
|
- nextcloud
|
||||||
|
- nextcloud_apps
|
||||||
|
- docker
|
||||||
|
@ -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
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
nextcloud_version: 30.0.0
|
nextcloud_version: 30.0.2
|
||||||
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 +52,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 }}"
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user