class Docker::Container
This class represents a Docker Container. It's important to note that nothing is cached so that the information is always up to date.
Public Class Methods
Return all of the Containers.
# File lib/docker/container.rb, line 290 def self.all(opts = {}, conn = Docker.connection) hashes = Docker::Util.parse_json(conn.get('/containers/json', opts)) || [] hashes.map { |hash| new(conn, hash) } end
Create a new Container.
# File lib/docker/container.rb, line 273 def self.create(opts = {}, conn = Docker.connection) name = opts.delete('name') query = {} query['name'] = name if name resp = conn.post('/containers/create', query, :body => opts.to_json) hash = Docker::Util.parse_json(resp) || {} new(conn, hash) end
Return the container with specified ID
# File lib/docker/container.rb, line 283 def self.get(id, opts = {}, conn = Docker.connection) container_json = conn.get("/containers/#{URI.encode(id)}/json", opts) hash = Docker::Util.parse_json(container_json) || {} new(conn, hash) end
Private Class Methods
The private new method accepts a connection and a hash of options that must include an id.
# File lib/docker/base.rb, line 10 def initialize(connection, hash={}) unless connection.is_a?(Docker::Connection) raise ArgumentError, "Expected a Docker::Connection, got: #{connection}." end normalize_hash(hash) @connection, @info, @id = connection, hash, hash['id'] raise ArgumentError, "Must have id, got: #{hash}" unless @id end
Public Instance Methods
# File lib/docker/container.rb, line 250 def archive_in(inputs, output_path, opts = {}) file_hash = Docker::Util.file_hash_from_paths([*inputs]) tar = StringIO.new(Docker::Util.create_tar(file_hash)) archive_in_stream(output_path, opts) do tar.read(Excon.defaults[:chunk_size]).to_s end end
# File lib/docker/container.rb, line 258 def archive_in_stream(output_path, opts = {}, &block) overwrite = opts[:overwrite] || opts['overwrite'] || false connection.put( path_for(:archive), { 'path' => output_path, 'noOverwriteDirNonDir' => !overwrite }, :headers => { 'Content-Type' => 'application/x-tar' }, &block ) self end
# File lib/docker/container.rb, line 241 def archive_out(path, &block) connection.get( path_for(:archive), { 'path' => path }, :response_block => block ) self end
Attach to a container's standard streams / logs.
# File lib/docker/container.rb, line 98 def attach(options = {}, &block) stdin = options.delete(:stdin) tty = options.delete(:tty) opts = { :stream => true, :stdout => true, :stderr => true }.merge(options) # Creates list to store stdout and stderr messages msgs = Docker::Messages.new excon_params = {} if stdin # If attaching to stdin, we must hijack the underlying TCP connection # so we can stream stdin to the remote Docker process opts[:stdin] = true excon_params[:hijack_block] = Docker::Util.hijack_for(stdin, block, msgs, tty) else excon_params[:response_block] = Docker::Util.attach_for(block, msgs, tty) end connection.post( path_for(:attach), opts, excon_params ) [msgs.stdout_messages, msgs.stderr_messages] end
Create an Image from a Container's change.s
# File lib/docker/container.rb, line 129 def commit(options = {}) options.merge!('container' => self.id[0..7]) # [code](https://github.com/dotcloud/docker/blob/v0.6.3/commands.go#L1115) # Based on the link, the config passed as run, needs to be passed as the # body of the post so capture it, remove from the options, and pass it via # the post body config = options.delete('run') hash = Docker::Util.parse_json(connection.post('/commit', options, :body => config.to_json)) Docker::Image.send(:new, self.connection, hash) end
# File lib/docker/container.rb, line 233 def copy(path, &block) connection.post(path_for(:copy), {}, :body => { "Resource" => path }.to_json, :response_block => block ) self end
Create an Exec instance inside the container
@param command [String, Array] The command to run inside the Exec instance @param options [Hash] The options to pass to Docker::Exec
@return [Docker::Exec] The Exec instance
# File lib/docker/container.rb, line 54 def exec(command, opts = {}, &block) # Establish values tty = opts.delete(:tty) || false detach = opts.delete(:detach) || false user = opts.delete(:user) stdin = opts.delete(:stdin) stdout = opts.delete(:stdout) || !detach stderr = opts.delete(:stderr) || !detach # Create Exec Instance instance = Docker::Exec.create( { 'Container' => self.id, 'User' => user, 'AttachStdin' => !!stdin, 'AttachStdout' => stdout, 'AttachStderr' => stderr, 'Tty' => tty, 'Cmd' => command }, self.connection ) start_opts = { :tty => tty, :stdin => stdin, :detach => detach } if detach instance.start!(start_opts) return instance else instance.start!(start_opts, &block) end end
Export the Container as a tar.
# File lib/docker/container.rb, line 92 def export(&block) connection.get(path_for(:export), {}, :response_block => block) self end
# File lib/docker/container.rb, line 180 def kill!(opts = {}) connection.post(path_for(:kill), opts) self end
# File lib/docker/container.rb, line 155 def logs(opts = {}) connection.get(path_for(:logs), opts) end
Update the @info hash, which is the only mutable state in this object.
e.g. if you would like a live status from the #info hash, call #refresh! first.
# File lib/docker/container.rb, line 8 def refresh! other = Docker::Container.all({all: true}, connection).find { |c| c.id.start_with?(self.id) || self.id.start_with?(c.id) } info.merge!(self.json) other && info.merge!(other.info) self end
remove container
# File lib/docker/container.rb, line 212 def remove(options = {}) connection.delete("/containers/#{self.id}", options) nil end
# File lib/docker/container.rb, line 159 def rename(new_name) query = {} query['name'] = new_name connection.post(path_for(:rename), query) end
Given a command and an optional number of seconds to wait for the currently executing command, creates a new Container to run the specified command. If the command that is currently executing does not return a 0 status code, an UnexpectedResponseError is raised.
# File lib/docker/container.rb, line 40 def run(cmd, time = 1000) if (code = tap(&:start).wait(time)['StatusCode']).zero? commit.run(cmd) else raise UnexpectedResponseError, "Command returned status code #{code}." end end
# File lib/docker/container.rb, line 175 def start!(opts = {}) connection.post(path_for(:start), {}, :body => opts.to_json) self end
# File lib/docker/container.rb, line 165 def streaming_logs(opts = {}, &block) stack_size = opts.delete('stack_size') || -1 tty = opts.delete('tty') || opts.delete(:tty) || false msgs = Docker::MessagesStack.new(stack_size) excon_params = {response_block: Docker::Util.attach_for(block, msgs, tty)} connection.get(path_for(:logs), opts, excon_params) msgs.messages.join end
Return a String representation of the Container.
# File lib/docker/container.rb, line 143 def to_s "Docker::Container { :id => #{self.id}, :connection => #{self.connection} }" end
Return a List of Hashes that represents the top running processes.
# File lib/docker/container.rb, line 19 def top(opts = {}) resp = Docker::Util.parse_json(connection.get(path_for(:top), opts)) if resp['Processes'].nil? [] else resp['Processes'].map { |ary| Hash[resp['Titles'].zip(ary)] } end end
Wait for the current command to finish executing. Default wait time is `Excon.options`.
# File lib/docker/container.rb, line 30 def wait(time = nil) excon_params = { :read_timeout => time } resp = connection.post(path_for(:wait), nil, excon_params) Docker::Util.parse_json(resp) end
Private Instance Methods
Convenience method to return the path for a particular resource.
# File lib/docker/container.rb, line 296 def path_for(resource) "/containers/#{self.id}/#{resource}" end