Skip to content

sbialobok/grunt-docker-io

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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().

grunt.initConfig({
  docker_io: {
    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 do something with whatever. So if the testing file has the content Testing and the 123 file had the content 1 2 3, the generated result would be Testing, 1 2 3.

grunt.initConfig({
  docker_io: {
    options: {
      dockerFileLocation: '.',
      buildName: '',
      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)

About

Build, tag and push docker images

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%