Class: Dip::CLI::Nginx

Inherits:
Base
  • Object
show all
Defined in:
lib/dip/cli/nginx.rb

Overview

Instance Method Summary collapse

Methods inherited from Base

exit_on_failure?

Instance Method Details

#downObject



48
49
50
51
52
53
54
55
56
# File 'lib/dip/cli/nginx.rb', line 48

def down
  if options[:help]
    invoke :help, ["down"]
  else
    Dip::Commands::Nginx::Down.new(
      name: options.fetch(:name)
    ).execute
  end
end

#restart(*args) ⇒ Object



61
62
63
64
65
66
67
68
69
# File 'lib/dip/cli/nginx.rb', line 61

def restart(*args)
  if options[:help]
    invoke :help, ["restart"]
  else
    Dip::CLI::Nginx.start(["down"] + args)
    sleep 1
    Dip::CLI::Nginx.start(["up"] + args)
  end
end

#upObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/dip/cli/nginx.rb', line 27

def up
  if options[:help]
    invoke :help, ["up"]
  else
    Dip::Commands::Nginx::Up.new(
      name: options.fetch(:name),
      socket: options.fetch(:socket),
      net: options.fetch(:net),
      publish: options.fetch(:publish),
      image: options.fetch(:image),
      domain: options.fetch(:domain),
      certs: options[:certs]
    ).execute
  end
end