class Gitlab::QA::Component::PostgreSQL

def start

def start
  @docker.run(image, tag) do |command|
    command << "-d"
    command << "--name #{name}"
    command << "--net #{network}"
    command.env("POSTGRES_PASSWORD", "SQL_PASSWORD")
  end
end