Class: Indocker::ContainerDirectives::Base
Instance Method Summary
collapse
#build_directive?, #container_directive?, #partial?, #prepare_directive?
Instance Method Details
#after_start? ⇒ Boolean
7
8
9
|
# File 'lib/indocker/directives/container_directives/base.rb', line 7
def after_start?
false
end
|
#after_stop? ⇒ Boolean
15
16
17
|
# File 'lib/indocker/directives/container_directives/base.rb', line 15
def after_stop?
false
end
|
#before_start? ⇒ Boolean
3
4
5
|
# File 'lib/indocker/directives/container_directives/base.rb', line 3
def before_start?
false
end
|
#before_stop? ⇒ Boolean
11
12
13
|
# File 'lib/indocker/directives/container_directives/base.rb', line 11
def before_stop?
false
end
|