chore(nginx_fpm_proxy): provide defaults for not defined variables

This commit is contained in:
transcaffeine 2024-10-26 19:01:08 +02:00
parent 6027db3f5f
commit e2e8d84c13
Signed by: transcaffeine
GPG Key ID: 03624C433676E465

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