Class: Dependencies::Docker
- Inherits:
-
Dependency
- Object
- Dependency
- Dependencies::Docker
- Defined in:
- lib/dependencies/docker.rb
Constant Summary
Constants inherited from Dependency
Dependency::DESCRIPTION_TYPE_WIDTH
Instance Attribute Summary
Attributes inherited from Dependency
Instance Method Summary collapse
Methods inherited from Dependency
#always_act?, #exit_code, #failure?, #initialize, #output, #should_meet?, #success?, #type
Constructor Details
This class inherits a constructor from Dependency
Instance Method Details
#meet ⇒ Object
9 10 11 |
# File 'lib/dependencies/docker.rb', line 9 def meet execute("cd #{name} && docker-compose up -d") end |
#met? ⇒ Boolean
5 6 7 |
# File 'lib/dependencies/docker.rb', line 5 def met? execute("cd #{name} && docker-compose ps | grep -q ' Up '") end |
#unmeet ⇒ Object
13 14 15 |
# File 'lib/dependencies/docker.rb', line 13 def unmeet execute("cd #{name} && docker-compose down") end |