module Dort

Constants

VERSION

Public Instance Methods

containers() click to toggle source
# File lib/dort.rb, line 58
def containers
  Docker::Container.all(all: true).map do |container|
    Container.new(container.json)
  end
end