From b77303c3acd66a9a7d6b414af62bf5ed6bdf41e6 Mon Sep 17 00:00:00 2001 From: Mauro Torrez Date: Sun, 8 Sep 2019 23:31:13 -0300 Subject: [PATCH] dbg --- defaults/main.yml | 4 ++-- tasks/main.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index cdb871c..fc0d0d8 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -19,8 +19,8 @@ dovecot_container: dovecot # puertos públicos postfix_publish_ports: - - 25:25 - - 587:587 + - "25:25" + - "587:587" # directorio con reglas, relativo al volumen postfix_rules_dir: rules diff --git a/tasks/main.yml b/tasks/main.yml index 76cc176..f11230c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -27,8 +27,8 @@ restart_policy: unless-stopped image: "{{ postfix_image }}" volumes: - - "{{ postfix_volume }}:/etc/postfix/" - - "{{ postfix_volume_ssl }}:/ssl/" + - "{{ postfix_volume }}:/etc/postfix" + - "{{ postfix_volume_ssl }}:/ssl" networks: - name: "{{ docker_network_name }}" ports: "{{ postfix_publish_ports }}"