diff --git a/package.json b/package.json index d473d2f..37228f0 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/readme.md b/readme.md index e758c30..dd6949d 100644 --- a/readme.md +++ b/readme.md @@ -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