Sha256: 61aabf1ccb8b07a871bfab6bdadbc420f98b77bbe1f7c1e17c6fe75afbbc4155
Contents?: true
Size: 1.66 KB
Versions: 1
Compression:
Stored size: 1.66 KB
Contents
require 'shellwords' module CIDE # Simple docker client helper module Docker # Generates a valid id for docker from any string def self.id(str) "#{str}".downcase.gsub(/[^a-z0-9\-_.]/, '_') end # Raised when a docker command exits with a status higher than zero class Error < StandardError attr_reader :exitstatus def initialize(exitstatus) @exitstatus = exitstatus super("Failed with exitstatus #{exitstatus}") end end class VersionError < StandardError; end def docker(*args, **opts) setup_docker ret = run Shellwords.join(['docker'] + args), opts exitstatus = $?.exitstatus fail Error, exitstatus if exitstatus > 0 ret end protected def setup_docker @setup_docker ||= ( if `uname`.strip == 'Darwin' && !ENV['DOCKER_HOST'] unless system('which boot2docker >/dev/null 2>&1') puts 'make sure boot2docker is installed and running' puts puts '> brew install boot2docker' exit 1 end `boot2docker shellinit 2>/dev/null` .lines .grep(/export (\w+)=(.*)/) { ENV[$1] = $2.strip } end # Check docker version docker_version = nil case `docker version 2>/dev/null` when /Client version: ([^\s]+)/ docker_version = $1 when /\s+Version:\s+([^\s]+)/ docker_version = $1 else fail VersionError, 'Unknown docker version' end if docker_version < '1.5.0' fail VersionError, "Docker version #{$1} too old" end true ) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cide-0.6.2 | lib/cide/docker.rb |