Socket
Book a DemoInstallSign in
Socket

grunt-docker-io

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-docker-io

Build and Push Docker Images

latest
Source
npmnpm
Version
0.7.0
Version published
Maintainers
1
Created
Source

grunt-docker-io

Build and Push Docker Images

NPM

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-docker-io --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-docker-io');

The "docker_io" task

Overview

In your project's Gruntfile, add a section named docker_io to the data object passed into grunt.initConfig(). The docker_io section should include a target, in the example below we've named the target testimage.

grunt.initConfig({
  docker_io: {
    testimage: {
      options: {
        dockerFileLocation: '.',
        buildName: 'dockerIO',
        tag: 'latest',
        pushLocation: 'https://hub.docker.io',
        username: 'drgrove',
        push: true,
        force: true
      }
    }
  },
});

Options

options.dockerFileLocation

Type: String Default value: '.'

A string value that gives the location of the docker file relative to project root.

options.buildName

Type: String Default value: ''

A string value that is used to create the image name

options.tag

Type: String Default value: 'latest'

A string value for setting the images tag

options.pushLocation

Type: String Default value: 'https://hub.docker.io'

A string value for the location where you'd like to push for docker image

options.username

Type: String Default value: process.env.USER Required: true

Your Registry username.

options.push

Type: Boolean Default value: true

Push the image to a Docker Registry

options.force

Type: Boolean Default value: false

Force the tag creation

Usage Examples

Default Options

In this example, the default options are used to build the docker file in the current directory. The built image will be pushed to process.env.USER's test repository in the docker hub with a latest tag.

grunt.initConfig({
  docker_io: {
    testimage: {
      options: {
        dockerFileLocation: '.',
        buildName: 'test',
        tag: 'latest',
        pushLocation: 'https://hub.docker.io',
        username: process.env.USER, // Current logged in user
        push: true,
        force: false
      }
    }
  },
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

0.1.0 - Initial Release (Ability to Build and Push Dockerfiles)

Keywords

gruntplugin

FAQs

Package last updated on 08 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts