Compare commits
No commits in common. "e2fae25592345999aebb13a36d9c6e3dccc31895" and "77484f194460e041e5b69f2dfbfe6c512ae4ad7d" have entirely different histories.
e2fae25592
...
77484f1944
3 changed files with 4 additions and 22 deletions
|
|
@ -14,7 +14,6 @@ nextcloud_image: "nextcloud:fpm"
|
||||||
nextcloud_redis_image: "redis:latest"
|
nextcloud_redis_image: "redis:latest"
|
||||||
nextcloud_port: 80
|
nextcloud_port: 80
|
||||||
nextcloud_extra_hosts: []
|
nextcloud_extra_hosts: []
|
||||||
nextcloud_extra_networks: []
|
|
||||||
nextcloud_allow_local_remote_servers: false # Set to true to allow requests to local network (dev only)
|
nextcloud_allow_local_remote_servers: false # Set to true to allow requests to local network (dev only)
|
||||||
|
|
||||||
nextcloud_postgres_image: "postgres:15"
|
nextcloud_postgres_image: "postgres:15"
|
||||||
|
|
@ -59,7 +58,6 @@ nextcloud_trusted_proxies: "172.16.0.0/12"
|
||||||
|
|
||||||
# File locking and real-time push notifications
|
# File locking and real-time push notifications
|
||||||
nextcloud_enable_notify_push: false
|
nextcloud_enable_notify_push: false
|
||||||
nextcloud_notify_push_image: "icewind1991/notify_push:1.3.1"
|
|
||||||
|
|
||||||
# Non-default apps to install and enable
|
# Non-default apps to install and enable
|
||||||
nextcloud_apps_to_install:
|
nextcloud_apps_to_install:
|
||||||
|
|
|
||||||
|
|
@ -19,12 +19,6 @@
|
||||||
state: directory
|
state: directory
|
||||||
mode: '0755'
|
mode: '0755'
|
||||||
|
|
||||||
- name: Ensure extra networks exist
|
|
||||||
community.docker.docker_network:
|
|
||||||
name: "{{ item }}"
|
|
||||||
state: present
|
|
||||||
loop: "{{ nextcloud_extra_networks }}"
|
|
||||||
|
|
||||||
- name: Create docker-compose file for nextcloud
|
- name: Create docker-compose file for nextcloud
|
||||||
template:
|
template:
|
||||||
src: docker-compose.yml.j2
|
src: docker-compose.yml.j2
|
||||||
|
|
|
||||||
|
|
@ -66,9 +66,6 @@ services:
|
||||||
- {{ nextcloud_docker_volume_dir }}/nextcloud/:/var/www/html
|
- {{ nextcloud_docker_volume_dir }}/nextcloud/:/var/www/html
|
||||||
networks:
|
networks:
|
||||||
- {{ nextcloud_backend_network }}
|
- {{ nextcloud_backend_network }}
|
||||||
{% for net in nextcloud_extra_networks %}
|
|
||||||
- {{ net }}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
nextcloud:
|
nextcloud:
|
||||||
image: {{ nextcloud_image }}
|
image: {{ nextcloud_image }}
|
||||||
|
|
@ -105,9 +102,6 @@ services:
|
||||||
- {{ nextcloud_docker_volume_dir }}/nextcloud/:/var/www/html
|
- {{ nextcloud_docker_volume_dir }}/nextcloud/:/var/www/html
|
||||||
networks:
|
networks:
|
||||||
- {{ nextcloud_backend_network }}
|
- {{ nextcloud_backend_network }}
|
||||||
{% for net in nextcloud_extra_networks %}
|
|
||||||
- {{ net }}
|
|
||||||
{% endfor %}
|
|
||||||
{% if nextcloud_extra_hosts is defined and nextcloud_extra_hosts | length > 0 %}
|
{% if nextcloud_extra_hosts is defined and nextcloud_extra_hosts | length > 0 %}
|
||||||
extra_hosts:
|
extra_hosts:
|
||||||
{% for host in nextcloud_extra_hosts %}
|
{% for host in nextcloud_extra_hosts %}
|
||||||
|
|
@ -117,7 +111,7 @@ services:
|
||||||
|
|
||||||
{% if nextcloud_enable_notify_push %}
|
{% if nextcloud_enable_notify_push %}
|
||||||
notify-push:
|
notify-push:
|
||||||
image: {{ nextcloud_notify_push_image }}
|
image: icewind1991/notify_push
|
||||||
restart: always
|
restart: always
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
|
|
@ -152,7 +146,3 @@ networks:
|
||||||
{{ nextcloud_backend_network }}:
|
{{ nextcloud_backend_network }}:
|
||||||
{{ nextcloud_traefik_network }}:
|
{{ nextcloud_traefik_network }}:
|
||||||
external: true
|
external: true
|
||||||
{% for net in nextcloud_extra_networks %}
|
|
||||||
{{ net }}:
|
|
||||||
external: true
|
|
||||||
{% endfor %}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue