Sha256: 67585f34e2fb7c4f0c7335847b9250af52ab6fa9df99ca86aa2ae282d005a831
Contents?: true
Size: 864 Bytes
Versions: 10
Compression:
Stored size: 864 Bytes
Contents
# frozen_string_literal: true module Orchestration module Services module Database module Adapters class Postgis include AdapterBase def name 'postgis' end def image 'postgis/postgis:15-3.3' 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
10 entries across 10 versions & 1 rubygems