build: force rm containers

This commit is contained in:
Sérgio Ramos 2017-06-01 00:56:56 +01:00
parent 190230de2f
commit 246cee7a8c
1 changed files with 2 additions and 2 deletions

View File

@ -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