Method: ComposeManager#run

Defined in:
lib/docker-sync/compose.rb

#runObject



37
38
39
40
41
42
43
44
# File 'lib/docker-sync/compose.rb', line 37

def run
  say_status 'ok','starting compose',:green
  options = Hash.new
  if @global_options['compose-force-build']
    options[:build] = true
  end
  @compose_session.up(**options)
end