Skip to content

Commit

Permalink
Update docker-compose plugin
Browse files Browse the repository at this point in the history
The `--all` flag was removed in docker-compose 1.7.0 last year. docker/compose#3466

Currently produces:
```
WARNING: --all flag is obsolete. This is now the default behavior of `docker-compose rm`
```
  • Loading branch information
miketheman authored Oct 10, 2017
1 parent 3bad267 commit 14261ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/available/docker-compose.plugin.bash
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function docker-compose-fresh() {
fi

docker-compose $DCO_FILE_PARAM stop
docker-compose $DCO_FILE_PARAM rm -f --all
docker-compose $DCO_FILE_PARAM rm -f
docker-compose $DCO_FILE_PARAM up -d
docker-compose $DCO_FILE_PARAM logs -f --tail 100
}

0 comments on commit 14261ec

Please sign in to comment.