From 246cee7a8c84cb729912563a675a0d8a5139f25b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Ramos?= Date: Thu, 1 Jun 2017 00:56:56 +0100 Subject: [PATCH] build: force rm containers --- scripts/deploy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy b/scripts/deploy index 7880e2e6..a2fae090 100755 --- a/scripts/deploy +++ b/scripts/deploy @@ -139,7 +139,7 @@ const deploy = async () => { }); // rm containers - await execa('docker-compose', ['rm'], { + await execa('docker-compose', ['rm', '--force'], { stdio: 'inherit', env: Object.assign({}, env, { COMPOSE_PROJECT_NAME @@ -147,7 +147,7 @@ const deploy = async () => { }); // pull new images - await execa('docker-compose', ['pull'], { + await execa('docker-compose', ['pull', '--parallel'], { stdio: 'inherit', env: Object.assign({}, env, { COMPOSE_PROJECT_NAME