class Kitsune::Kit::Commands::SetupPostgresDocker

def build_database_url(filled_options, postgres_defaults)

def build_database_url(filled_options, postgres_defaults)
  user = postgres_defaults[:postgres_user]
  password = postgres_defaults[:postgres_password]
  host = filled_options[:server_ip]
  port = postgres_defaults[:postgres_port]
  db = postgres_defaults[:postgres_db]
  "postgres://#{user}:#{password}@#{host}:#{port}/#{db}"
end