dockerode-compose
docker-compose in Node.js using dockerode
File Explorer
- node.js.yml
- down.js
- pull.js
- up.js
- configs.js
- networks.js
- secrets.js
- services.js
- servicesTools.js
- tools.js
- volumes.js
- Dockerfile
- Dockerfile
- app4.yml
- Dockerfile
- app2.yml
- docker-compose.yml
- docker-compose.yml
- Dockerfile
- Dockerfile
- backend.Dockerfile
- docker-compose.yml
- depends.yml
- ghost.yml
- mysql.yml
- mysql_extends.yml
- secret.txt
- wordpress.yml
- wordpress_long.yml
- wordpress_original.yml
- compose.js
- spec_helper.js
- tools.js
- .gitignore
- .prettierrc.json
- compose.js
- LICENSE
- package-lock.json
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
mocha
View Details ▼
mocha
A feature-rich JavaScript test framework.
mocha
Run tests with default configuration or as configured in `mocha.opts`:
mocha {{path/to/test_directory}}
Run tests contained at a specific location:
mocha {{[-g|--grep]}} {{regex}}
Run tests that match a specific `grep` pattern:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
