Sha256: 112a624fd38ef418a65845648fc27995afacdea1133cb5e8ef951684fb0967d0
Contents?: true
Size: 1 KB
Versions: 6
Compression:
Stored size: 1 KB
Contents
# Those values will be used in the Rail's project database.yml export DB_PASS="Passw0rd" export DB_USER=<%= file_name %>_user # This points to the name of the container; do not change unless you understand what this means export DB_HOST=postgres export DB_PORT=5432 export DB_NAME=<%= file_name %> # You need to have a local development server like puma-dev (it will also work with pow, but it is deprecated, you have been warned) export PUMA_DEV_PORT=24633 # This is the prefix of any container name that will be created via docker and docker-compose # You need to make sure that this is unique among all your docker projects # THIS IS IMPORTANT! export COMPOSE_PROJECT_NAME=<%= file_name %> # This is the Postgres admin user export PG_USER=postgres export PG_PASSWORD=postgres export PG_MAINTENANCE_DB=template1 # Credentials for the pgadmin4 application export PGADMIN_DEF_EMAIL=myemail@example.com export PGADMIN_DEF_PASSWORD="Passw0rd" # alias compdbs="COMPOSE_PROJECT_NAME=oss-dbs comp -f docker-compose.dbs.yml"
Version data entries
6 entries across 6 versions & 1 rubygems