Remove remaining references to MySQL

MySQL support was removed in https://github.com/sameersbn/docker-gitlab/pull/1961
This commit is contained in:
Peter Leitzen 2019-10-22 10:33:37 +02:00 committed by Niclas Mietz
parent 4788ebedd7
commit ae4c826c5a
2 changed files with 3 additions and 4 deletions

View File

@ -929,7 +929,7 @@ Below is the complete list of available options that can be used to customize yo
| `DB_ADAPTER` | The database type. Currently only postgresql is supported. Over 12.1 postgres force. Possible values: `postgresql`. Defaults to `postgresql`. |
| `DB_ENCODING` | The database encoding. For `DB_ADAPTER` values `postresql` this parameter defaults and `utf8` respectively. |
| `DB_HOST` | The database server hostname. Defaults to `localhost`. |
| `DB_PORT` | The database server port. Defaults to `3306` for mysql and `5432` for postgresql. |
| `DB_PORT` | The database server port. Defaults to `5432` for postgresql. |
| `DB_NAME` | The database database name. Defaults to `gitlabhq_production` |
| `DB_USER` | The database database user. Defaults to `root` |
| `DB_PASS` | The database database password. Defaults to no password |

View File

@ -99,9 +99,8 @@ update_template() {
}
gitlab_finalize_database_parameters() {
# is a mysql or postgresql database linked?
# requires that the mysql or postgresql containers have exposed
# port 3306 and 5432 respectively.
# is a postgresql database linked?
# requires that the postgresql containers have exposed port 5432.
DB_HOST=${DB_HOST:-${POSTGRESQL_PORT_5432_TCP_ADDR}}
DB_PORT=${DB_PORT:-${POSTGRESQL_PORT_5432_TCP_PORT}}