github.com/naphatkrit/deis@v1.12.3/database/README.md (about)

     1  # Deis Database
     2  
     3  A PostgreSQL database for use in the [Deis](http://deis.io) open source PaaS.
     4  
     5  This Docker image is based on the official
     6  [alpine:3.2](https://registry.hub.docker.com/_/alpine/) image.
     7  
     8  Please add any [issues](https://github.com/deis/deis/issues) you find with this software to
     9  the [Deis Project](https://github.com/deis/deis).
    10  
    11  ## Usage
    12  
    13  Please consult the [Makefile](Makefile) for current instructions on how to build, test, push,
    14  install, and start **deis/database**.
    15  
    16  ## Environment Variables
    17  
    18  * **BUCKET_NAME** store component bucket used for database WAL logs and backups (default: db_wal)
    19  * **DEBUG** enables verbose output if set
    20  * **ETCD_PORT** sets the TCP port on which to connect to the local etcd
    21    daemon (default: *4001*)
    22  * **ETCD_PATH** sets the etcd directory where the database announces
    23    its configuration (default: */deis/database*)
    24  * **ETCD_TTL** sets the time-to-live before etcd purges a configuration
    25    value, in seconds (default: *10*)
    26  * **PG_ADMIN_USER** sets the database admin user name (default: *postgres*)
    27  * **PG_ADMIN_PASS** sets the database admin user password
    28    (default: *changeme123*)
    29  * **PG_CONFIG** sets the PostgreSQL configuration file location
    30    (default: */etc/postgresql/9.3/main/postgresql.conf*)
    31  * **PG_LISTEN** sets the addresses on which the database will listen
    32    (default: *)
    33  * **PG_USER_NAME** sets the database user name for Deis (default: *deis*)
    34  * **PG_USER_PASS** sets the database user password for Deis
    35    (default: *changeme123*)
    36  * **PG_USER_DB** sets the database name used by Deis (default: *deis*)
    37  * **PORT** sets the TCP port on which the database listens (default: *5432*)
    38  
    39  ## License
    40  
    41  © 2014 Engine Yard, Inc.
    42  
    43  Licensed under the Apache License, Version 2.0 (the "License"); you may
    44  not use this file except in compliance with the License. You may obtain
    45  a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0>
    46  
    47  Unless required by applicable law or agreed to in writing, software
    48  distributed under the License is distributed on an "AS IS" BASIS,
    49  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    50  See the License for the specific language governing permissions and
    51  limitations under the License.