mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-20 21:08:59 +00:00
fix typos in docs.
This commit is contained in:
parent
f5e890d582
commit
c50b3f0603
2 changed files with 3 additions and 3 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue