Skip to content

Commit

Permalink
Merge pull request docker-library#28 from sealemar/master
Browse files Browse the repository at this point in the history
adapter='postgresql' instead of adapter='postgres'
  • Loading branch information
yosifkit authored Jun 27, 2016
2 parents 2fa2332 + b91f07d commit c2f8379
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 2.6/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case "$1" in
: "${REDMINE_DB_DATABASE:=${MYSQL_ENV_MYSQL_DATABASE:-${MYSQL_ENV_MYSQL_USER:-redmine}}}"
: "${REDMINE_DB_ENCODING:=}"
elif [ "$REDMINE_DB_POSTGRES" ]; then
adapter='postgres'
adapter='postgresql'
host="$REDMINE_DB_POSTGRES"
: "${REDMINE_DB_PORT:=5432}"
: "${REDMINE_DB_USERNAME:=${POSTGRES_ENV_POSTGRES_USER:-postgres}}"
Expand Down
2 changes: 1 addition & 1 deletion 3.0/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case "$1" in
: "${REDMINE_DB_DATABASE:=${MYSQL_ENV_MYSQL_DATABASE:-${MYSQL_ENV_MYSQL_USER:-redmine}}}"
: "${REDMINE_DB_ENCODING:=}"
elif [ "$REDMINE_DB_POSTGRES" ]; then
adapter='postgres'
adapter='postgresql'
host="$REDMINE_DB_POSTGRES"
: "${REDMINE_DB_PORT:=5432}"
: "${REDMINE_DB_USERNAME:=${POSTGRES_ENV_POSTGRES_USER:-postgres}}"
Expand Down
2 changes: 1 addition & 1 deletion 3.1/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case "$1" in
: "${REDMINE_DB_DATABASE:=${MYSQL_ENV_MYSQL_DATABASE:-${MYSQL_ENV_MYSQL_USER:-redmine}}}"
: "${REDMINE_DB_ENCODING:=}"
elif [ "$REDMINE_DB_POSTGRES" ]; then
adapter='postgres'
adapter='postgresql'
host="$REDMINE_DB_POSTGRES"
: "${REDMINE_DB_PORT:=5432}"
: "${REDMINE_DB_USERNAME:=${POSTGRES_ENV_POSTGRES_USER:-postgres}}"
Expand Down
2 changes: 1 addition & 1 deletion 3.2/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case "$1" in
: "${REDMINE_DB_DATABASE:=${MYSQL_ENV_MYSQL_DATABASE:-${MYSQL_ENV_MYSQL_USER:-redmine}}}"
: "${REDMINE_DB_ENCODING:=}"
elif [ "$REDMINE_DB_POSTGRES" ]; then
adapter='postgres'
adapter='postgresql'
host="$REDMINE_DB_POSTGRES"
: "${REDMINE_DB_PORT:=5432}"
: "${REDMINE_DB_USERNAME:=${POSTGRES_ENV_POSTGRES_USER:-postgres}}"
Expand Down
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case "$1" in
: "${REDMINE_DB_DATABASE:=${MYSQL_ENV_MYSQL_DATABASE:-${MYSQL_ENV_MYSQL_USER:-redmine}}}"
: "${REDMINE_DB_ENCODING:=}"
elif [ "$REDMINE_DB_POSTGRES" ]; then
adapter='postgres'
adapter='postgresql'
host="$REDMINE_DB_POSTGRES"
: "${REDMINE_DB_PORT:=5432}"
: "${REDMINE_DB_USERNAME:=${POSTGRES_ENV_POSTGRES_USER:-postgres}}"
Expand Down

0 comments on commit c2f8379

Please sign in to comment.