chef-provisioning-docker icon indicating copy to clipboard operation
chef-provisioning-docker copied to clipboard

Docker provisioner for chef-provisioning

Results 33 chef-provisioning-docker issues
Sort by recently updated
recently updated
newest added

0 down vote favorite I am trying to provision my docker image using chef. I run the following. ``` knife cookbook site install apt -z knife cookbook site install haproxy...

My current use case is when installing mysql while provisioning an image and having "/data/mysql:/var/lib/mysql" defined as a volume for persistence of the mysql db between container runs. When the...

Wondering how to set the log-driver for the container. want this (docker inspect): ``` "LogConfig": { "Type": "syslog", "Config": { "syslog-address": "udp://10.0.10.19:35514", "syslog-facility": "local0" } }, ``` always get this...

I'm having problems provisioning an image using docker on OSX (boot2docker) with chef in local mode. My container tries to find the chef-server on the docker host instead on my...

Hi, I'm having this error when trying to run chef-provisioning-docker from within docker (which is actually quite useful to get a reproducible self-contained chef environment and allows to run multiple...

Here are two scripts. One creates a machine: ``` ruby require 'chef/provisioning/docker_driver' machine "dummy" do tag "dummy" converge true machine_options({ docker_options: { base_image: { name: 'baseimage', repository: 'phusion/baseimage', tag: '0.9.17'...

See https://github.com/chef/chef-provisioning-docker/pull/56#discussion_r35155049 When chef-provisioning 1.3 is released, update the gemspec to depend on `~> 1.3` and leverage the new logic introduced there.

Improvement
Blocked

Steps to reproduce: 1. Create image with `machine_image` resource; 2. Remove image created on previous step using `docker rmi` command; 3. Converge machine using image from step 1 as from_image...

Is it possible to get the IP address of the docker container for use in a recipe with code similar to this ec2 code? ruby_block "print out public IP" do...

Question
Triaged

Currently `chef-provisioning-docker` does not support [`Docker Swarm`](https://docs.docker.com/swarm/) -- docker native clustering tool. `chef-provisioning-docker` workflow implies committing containers and reusing resulting images. This new image exists only on single node in...