mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-24 12:35:32 +00:00
force (-f) rm due to non interactive mode
This commit is contained in:
parent
cb9da9ef14
commit
3d2e4b2a59
2 changed files with 2 additions and 2 deletions
2
index.js
2
index.js
|
|
@ -131,7 +131,7 @@ const rm = function (options) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const cwd = options.cwd;
|
const cwd = options.cwd;
|
||||||
|
|
||||||
exec('docker-compose rm', { cwd }).then(
|
exec('docker-compose rm -f', { cwd }).then(
|
||||||
standards => {
|
standards => {
|
||||||
if (options.log) {
|
if (options.log) {
|
||||||
logStandards(standards);
|
logStandards(standards);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "docker-compose",
|
"name": "docker-compose",
|
||||||
"version": "0.3.2",
|
"version": "0.3.3",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "./node_modules/tape/bin/tape test",
|
"test": "./node_modules/tape/bin/tape test",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue