chef-provisioning-docker
chef-provisioning-docker copied to clipboard
Docker provisioner for chef-provisioning
I have the following recipe: ``` require 'chef/provisioning/docker_driver' machine_image 'ssh_server' do recipe 'java' machine_options( :docker_options => { :base_image => { :name => 'ubuntu', :repository => 'ubuntu', :tag => '14.04' }...
chef-provisionning-docker version : 0.10.0 Docker Engine Version : 1.12 Example: ```ruby with_machine_options( :docker_options => { :hostname => "myhostname" } ) machine "mycontainer" do role "myrole" end ``` When executing this,...
I am trying to provision docker containers using chef ,I can invoke using chef-client -z (with chefdk and gem installed,but not able to invoke using knife ssh "chef-client" from chef-server....
I have successfully provisioned docker image. But I was unable to run the docker image as it is resulting in a hung. Could anyone help me on this. require 'chef/provisioning/docker_driver'...
Following the documentation, I have a machine_image that looks like the following: `machine_image 'trx-enterprise' do role 'middleware-image' machine_options docker_options: { base_image: { name: 'oraclelinux', tag: '6' } }, docker_connection: {...
Creating an image from an image results in no converge taking place. It simply tags the old image. I think I'm not very familiar with Ruby yet, but I think...
This project appears to be dead. There have been no new commits in 4 months and there are pull requests that have not even been looked at despite being open...
Don't overwrite the `:docker_options`, specifically `'Cmd'`, while building a machine_image. Should resolve #97
I am trying to create a new docker image with my command like this: ``` require 'chef/provisioning' with_driver 'docker' machine_image 'myimage' do action :create recipe 'mycookbook::default' machine_options docker_options: { base_image:...
I am trying to run the example piece of code given for chef-provisioning-docker using chef zero. When I try to run it appears that Chef is already listening on port...