README.md in docker-api-1.7.4 vs README.md in docker-api-1.7.5
- old
+ new
@@ -248,9 +248,13 @@
# Delete a Container.
container.delete
# => nil
+# Request a Container by ID or name.
+Docker::Container.get('500f53b25e6e')
+# => Docker::Container { :id => , :connection => Docker::Connection { :url => http://localhost, :options => {:port=>4243} } }
+
# Request all of the Containers. By default, will only return the running Containers.
Docker::Container.all(:all => true)
# => [Docker::Container { :id => , :connection => Docker::Connection { :url => http://localhost, :options => {:port=>4243} } }]
```