Sha256: f0f63838870b17acfd8521040f978d0bd6d613f58c8fdcc34704a55fd86e7734
Contents?: true
Size: 833 Bytes
Versions: 36
Compression:
Stored size: 833 Bytes
Contents
# frozen_string_literal: true module Orchestration module Services module Database module Adapters class Postgresql def name 'postgresql' end def image 'library/postgres' end def credentials { 'username' => 'postgres', 'password' => 'password', 'database' => 'postgres' } end def errors [PG::ConnectionBad] end def default_port 5432 end def environment { 'POSTGRES_PASSWORD' => 'password', 'PGDATA' => data_dir } end def data_dir '/var/pgdata' end end end end end end
Version data entries
36 entries across 36 versions & 1 rubygems