Skip to content

Commit

Permalink
Use PgSQL default (#78)
Browse files Browse the repository at this point in the history
* Use PgSQL default

* change DB_HOST default
  • Loading branch information
jbrooksuk authored and djdefi committed May 25, 2016
1 parent 0577d06 commit ce53cd7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ initialize_system() {
APP_URL=${APP_URL:-http://localhost}
APP_KEY=${APP_KEY:-SECRET}

DB_DRIVER=${DB_DRIVER:-mysql}
DB_HOST=${DB_HOST:-mysql}
DB_DRIVER=${DB_DRIVER:-pgsql}
DB_HOST=${DB_HOST:-postgres}
DB_DATABASE=${DB_DATABASE:-cachet}
DB_USERNAME=${DB_USERNAME:-cachet}
DB_PASSWORD=${DB_PASSWORD:-cachet}
DB_USERNAME=${DB_USERNAME:-postgres}
DB_PASSWORD=${DB_PASSWORD:-postgres}
DB_PORT=${DB_PORT:-5432}

CACHE_DRIVER=${CACHE_DRIVER:-apc}
SESSION_DRIVER=${SESSION_DRIVER:-apc}
Expand Down

0 comments on commit ce53cd7

Please sign in to comment.