From 5edb7e5e38955fffc4b5a5a76e87339c14c5ecc6 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Thu, 12 Apr 2018 23:35:36 +0200 Subject: [PATCH] Remove deprecated option --parallel docker-compose 1.21.0 deprecated the flag as it is now the default behaviour. This change removes the flag and therefore the deprecation warning from the logs Signed-off-by: Knut Ahlers --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 3d7b0d5..d72a78b 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -64,12 +64,12 @@ Type=oneshot RemainAfterExit=yes - ExecStartPre=/usr/local/bin/docker-compose pull --quiet --parallel --ignore-pull-failures + ExecStartPre=/usr/local/bin/docker-compose pull --quiet --ignore-pull-failures ExecStart=/usr/local/bin/docker-compose up -d --remove-orphans ExecStop=/usr/local/bin/docker-compose down - ExecReload=/usr/local/bin/docker-compose pull --quiet --parallel --ignore-pull-failures + ExecReload=/usr/local/bin/docker-compose pull --quiet --ignore-pull-failures ExecReload=/usr/local/bin/docker-compose up -d --remove-orphans [Install]