Method: ContainerManager#stop
- Defined in:
- lib/wf_node_api/container_manager.rb
#stop(name) ⇒ String
Stops a container with the given name
214 215 216 217 218 219 220 |
# File 'lib/wf_node_api/container_manager.rb', line 214 def stop(name) if !@adapter.exist?(name) raise ::NotFoundError end @adapter.stop(name) end |