fix typos in docs.

This commit is contained in:
Alexander Zeitler 2017-08-25 10:35:43 +02:00
parent f5e890d582
commit c50b3f0603
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "docker-compose",
"version": "0.4.2",
"version": "0.4.3",
"main": "index.js",
"scripts": {
"test": "./node_modules/tape/bin/tape test",

View file

@ -1,6 +1,6 @@
# Manage Docker-Compose via Node.js
`docker-compose` is a small library that allows you to run [docker-compose](https://docs.docker.com/compose/)(which is still required) via Node.js. This is useful to bootstrap test environments. You might also generate your `docker-compose.yml` files using [composefile](https://www.npmjs.com/package/composefile)
`docker-compose` is a small library that allows you to run [docker-compose](https://docs.docker.com/compose/)(which is still required) via Node.js. This is useful to bootstrap test environments. You might also generate your `docker-compose.yml` files using [composefile](https://www.npmjs.com/package/composefile).
## Installation
@ -41,7 +41,7 @@ compose.up({ cwd: path.join(__dirname), log: true })
## Running the tests
While `docker-compose` runs on Node.js 6+, running the tests requires you to use Node.js as they make use of `async/await`.
While `docker-compose` runs on Node.js 6+, running the tests requires you to use Node.js 8 as they make use of `async/await`.
```
npm test