docker-node-version
v1.0.2
Published
PostInstall utility for updating docker-compose file with version from package.json
Downloads
81
Readme
docker-node-version
PostInstall utility for applying version to Docker-compose files in Node.js projects.
When using docker/docker-compose to operate a Node.js project, this utility can be run on "postversion to update the project's docker-compose.yml file to add the version from the project's package.json to the image to be built.
This enables versioned docker image builds for Node.js containers.
To use
Your project must be configured to use a Dockerfile and docker-compose file at the root of your project. Expected that the docker-compose file will build and name the image for the service.
Install docker-node-version to devDependencies
npm install docker-node-version --save-dev
Add the following line to your package.json NPM scripts.
postversion: "node ./node_modules/docker-node-version"
for an example project can be found here