Build and Push Docker Images
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');
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
}
}
},
});
Type: String
Default value: '.'
A string value that gives the location of the docker file relative to project root.
Type: String
Default value: ''
A string value that is used to create the image name
Type: String
Default value: 'latest'
A string value for setting the images tag
Type: String
Default value: 'https://hub.docker.io'
A string value for the location where you'd like to push for docker image
Type: String
Default value: process.env.USER
Required: true
Your Registry username.
Type: Boolean
Default value: true
Push the image to a Docker Registry
Type: Boolean
Default value: false
Force the tag creation
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
}
}
},
});
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.
0.1.0 - Initial Release (Ability to Build and Push Dockerfiles)