Class: Indocker::ContainerDirectives::Base

Inherits:
Directives::Base show all
Defined in:
lib/indocker/directives/container_directives/base.rb

Direct Known Subclasses

DependsOn, EnvFile, Expose, From, Network, Ports, Ready

Instance Method Summary collapse

Methods inherited from Directives::Base

#build_directive?, #container_directive?, #partial?, #prepare_directive?

Instance Method Details

#after_start? ⇒ Boolean

Returns:

  • (Boolean)


7
8
9
# File 'lib/indocker/directives/container_directives/base.rb', line 7

def after_start?
  false
end

#after_stop? ⇒ Boolean

Returns:

  • (Boolean)


15
16
17
# File 'lib/indocker/directives/container_directives/base.rb', line 15

def after_stop?
  false
end

#before_start? ⇒ Boolean

Returns:

  • (Boolean)


3
4
5
# File 'lib/indocker/directives/container_directives/base.rb', line 3

def before_start?
  false
end

#before_stop? ⇒ Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/indocker/directives/container_directives/base.rb', line 11

def before_stop?
  false
end