1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
module Specinfra
module Backend
class Docker < Exec
def initialize(config = {})
super
begin
require 'docker' unless defined?(::Docker)
rescue LoadError
fail "Docker client library is not available. Try installing `docker-api' gem."
end
::Docker.url = get_config(:docker_url)
if image = get_config(:docker_image)
@images = []
@base_image = get_or_pull_image(image)
create_and_start_container
ObjectSpace.define_finalizer(self, self.class.__send__(:finalizer_for, @container))
elsif container = get_config(:docker_container)
@container = ::Docker::Container.get(container)
else
fail 'Please specify docker_image or docker_container.'
end
end
class << self
protected
# Get a finalizer for given container.
#
# @param [::Docker::Container, nil] container
#
# @return [Proc]
def finalizer_for(container)
proc do
# noinspection RubyNilAnalysis
unless container.nil?
container.stop
container.delete
end
end
end
end
def run_command(cmd, opts={})
cmd = build_command(cmd)
run_pre_command(opts)
docker_run!(cmd, opts)
end
def send_file(from, to)
if @base_image
@images << commit_container if @container
@images << current_image.insert_local('localPath' => from, 'outputPath' => to)
cleanup_container
create_and_start_container
elsif @container
# This needs Docker >= 1.8
@container.archive_in(from, to)
else
fail 'Cannot call send_file without docker_image or docker_container.'
end
end
def commit_container
@container.commit
end
private
def create_and_start_container
opts = { 'Image' => current_image.id }
if current_image.json["Config"]["Cmd"].nil? && current_image.json["Config"]["Entrypoint"].nil?
opts.merge!({'Cmd' => ['/bin/sh']})
end
opts.merge!({'OpenStdin' => true})
if path = get_config(:path)
(opts['Env'] ||= []) << "PATH=#{path}"
end
env = get_config(:env).to_a.map { |v| v.join('=') }
opts['Env'] = opts['Env'].to_a.concat(env)
opts.merge!(get_config(:docker_container_create_options) || {})
@container = ::Docker::Container.create(opts)
@container.start
while @container.json['State'].key?('Health') && @container.json['State']['Health']['Status'] == "starting" do
sleep 0.5
end
end
def cleanup_container
self.class.__send__(:finalizer_for, @container).call
end
def current_image
@images.last || @base_image
end
def docker_run!(cmd, opts={})
opts.merge!(get_config(:docker_container_exec_options) || {})
stdout, stderr, status = @container.exec(cmd.shellsplit, opts)
CommandResult.new :stdout => stdout.join, :stderr => stderr.join,
:exit_status => status
rescue ::Docker::Error::DockerError => e
raise
rescue => e
@container.kill
err = stderr.nil? ? ([e.message] + e.backtrace) : stderr
CommandResult.new :stdout => [stdout].join, :stderr => err.join,
:exit_status => (status || 1)
end
def get_or_pull_image(name)
begin
::Docker::Image.get(name)
rescue ::Docker::Error::NotFoundError
::Docker::Image.create('fromImage' => name)
end
end
def run_pre_command(opts)
if get_config(:pre_command)
cmd = build_command(get_config(:pre_command))
docker_run!(cmd, opts)
end
end
end
end
end
|