Sha256: 3e5df92c2631dd2021b700636aca438c5cd92e83eaf377223a9516a5d68ff1ee

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 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

    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
        true
      )
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cide-0.1.1 lib/cide/docker.rb
cide-0.1.0 lib/cide/docker.rb