docker-alpine/alpine-nodejs at master · Live4Code/docker-alpine · GitHub
Skip to content

Latest commit

 

History

History
 
 

Folders and files

README.md

alpine-nodejs

An image for using Node.js within containers, bundled with Alpine Linux and s6.

It's built from my Alpine Linux based Docker image (with s6, and DNS search support).

Versions

See VERSIONS.md for image contents.

Usage

To use this image include FROM smebberson/alpine-nodejs at the top of your Dockerfile. Inheriting from smebberson/alpine-nodejs provides you with the ability to easily start your node.js application using s6. You have two options for process management:

  • s6 can keep it running for you, restarting it when it crashes.
  • The entire container can exit allowing the host machine to kick in and restart it.

Automatic restarts

To start your app, with automatic restarts:

  • create a folder at /etc/services.d/app (or name it whatever you like, just make sure it lives within /etc/services.d)
  • create a file in your new folder called run and give it execute permissions
  • inside that file start start your node.js application, for example:
#!/usr/bin/env sh

# cd into our directory
cd /app

# start our node.js application
exec node server.js;

When you run this container, s6 will automatically start your application and make sure it stays running for you.

You'll also need to make sure you go through the usual process of adding your node.js source, installing your packages with npm and exposing the necessary ports for your application (usually within your Dockerfile).

Container exits

To start your app in a fashion that will exit the container when your app dies, add something like the following to your Dockerfile:

CMD ["node", "/app/server.js"]

The container will execute the command and your Node app will start running. When it suddenly dies, your container will exit so you'll need processes on your host machine to restart it (i.e. docker run --autorestart).

Taking advantage of s6

The above method has the benefit of exiting the container when your Node.js app dies, but it doesn't really allow you to take advantage of s6. With s6, you can have processes that are executed after your app dies. For example, in case there is something you need to clean up before your host restarts the container. To take advantage of this, create the executable run file at /etc/services.d/app as described in Automatic restarts.

Now, create an executable file named finish at /etc/services.d/app. In this file do any clean up you need to, and then use s6 to kill the container, for example:

#!/usr/bin/env sh

# perform clean-up here

# use s6 to exit the container
s6-svscanctl -t /var/run/s6/services

You can simply remove the last line, if you want s6 to automatically restart your Node.js app again.

Logging

If you're logging to stdout (which console.log does) then you'll be able to review your logs using the standard Docker process.

Handling uncaught exceptions

The best way to handle exceptions is to:

  1. Capture them.
  2. Log them.
  3. Exit the process and let s6 restart your app, or exit the container.

This will ensure that your errors aren't going un-noticed, but that your application stays up and in proper functioning order. An example of this is (although, I recommend a better logging solution):

process.on('uncaughtException', function (e) {

    console.log(e);
    process.exit(1);

});