dockerize2

Dockerize for NodeJS applications =================================

Usage no npm install needed!

<script type="module">
  import dockerize2 from 'https://cdn.skypack.dev/dockerize2';
</script>

README

Dockerize for NodeJS applications

A command-line utility to help you dockerize your NodeJS applications.

Installation

npm install -g dockerize2

Usage

cd /your/app/directory
dockerize2 build --tag some/tag --env NODE_ENV=production
docker run -it your/tag

# Learn more with `dockerize2 --help`

Notes

  • This utility assumes that your application can be started by running npm start.
  • If you have a build-step you want to run before building an image, make sure it is defined in the "prepublish" npm script.
  • The Docker image generated is based off of the official NodeJS docker image: change this by passing the --base/-i option when building:
    • dockerize2 build -t some/tag -i some/image

LICENSE

Copyright (c) 2016, Company or Person's Name jrapodaca@gmail.com

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.