Class: Neptuno::Docker::Restart

Inherits:
CLI::Base
  • Object
show all
Defined in:
lib/neptuno/docker/restart.rb

Overview

Restart docker containers for Neptuno project

Constant Summary

Constants inherited from CLI::Base

CLI::Base::ABORT_MESSAGE

Constants included from TTY::Command

TTY::Command::TTY, TTY::Command::TTYP

Constants included from TTY::Config

TTY::Config::ABORT_MESSAGE, TTY::Config::TTY

Constants included from TTY::File

TTY::File::ABORT_MESSAGE, TTY::File::TTY

Constants included from TTY::Prompt

TTY::Prompt::TTY

Instance Method Summary collapse

Methods inherited from CLI::Base

#command_service_to, #command_services_to, #initialize

Methods included from TTY::Command

#command, #command_p, #neptuno_command

Methods included from TTY::Config

#auto_restart_procs, #config, #configured_services, #docker_compose_hash, #docker_compose_services, #get_dependants, #healthy_services, #json_services_status, #running_services, #services, #services_with_procs, #starting_services

Methods included from TTY::File

#file, #in_service?, #make_service_files, #neptuno_path, #project, #service

Methods included from TTY::Prompt

#prompt

Constructor Details

This class inherits a constructor from Neptuno::CLI::Base

Instance Method Details

#call(services: [], **options) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
# File 'lib/neptuno/docker/restart.rb', line 14

def call(services: [], **options)
  command_services_to("restart", all: options.fetch(:all), services_as_args: services) do |services|
    make_service_files(services)
    opts = options.fetch(:options, nil) || get_gpr
    system("cd #{neptuno_path} && docker compose stop -t 0 #{services.join(" ")}")
    system("cd #{neptuno_path} && docker compose down -v #{services.join(" ")}") if options.fetch(:volumes)
    system("cd #{neptuno_path} && docker compose rm -f #{services.join(" ")}")
    system("cd #{neptuno_path} && docker compose build #{opts} #{services.join(" ")}")
    system("cd #{neptuno_path} && docker compose up -d #{services.join(" ")}")
  end
end

#get_gprObject



26
27
28
29
30
31
32
33
34
# File 'lib/neptuno/docker/restart.rb', line 26

def get_gpr
  begin
    lines = File.readlines("#{Dir.home}/.bundle/config")
  rescue Errno::ENOENT
    return
  end
  gpr = lines&.select { |line| line[/BUNDLE_RUBYGEMS__PKG__GITHUB__COM/] }&.last&.split(" ")&.last
  "--build-arg gpr=#{gpr}".gsub('\"', "") if gpr
end