kitchen-docker_cli
kitchen-docker_cli copied to clipboard
Docker native CLI driver for Test-Kitchen
Example: ``` docker run -it --cap-add=sys_ptrace centos:latest bash ``` https://docs.docker.com/engine/reference/run/#/runtime-privilege-and-linux-capabilities
I am running on Window 8 with a DockerMachine Linux VM. when I run kitchen converge I get this error: ``` Removing non-cookbook files before transfer Preparing solo.rb sh: -c:...
A fix idea for issue: #35 . This PR provides the change: if custom_dockerfile is set, then it will be rendered using ERB variables and saved to a local file....
The problem is, that when I set in `.kitchen.yml`: ``` yml platforms: - name: ubuntu transport: name: docker_cli driver: name: docker_cli driver_config: build_context: true dockerfile: DockerfileUbuntu ``` and then run...
Hey, would it be a problem to include the possibility to set image name for build parameter in the .kitchen.yml file? ``` ruby def docker_build_command cmd = String.new('build') cmd
Looks like the driver's using the unix local socket to connect Docker, which means test-kitchen must run on same host with Docker. Would you be able to enhance docker_command by...