From ae4c826c5a8370ee36aabc329d426d02a6151ef5 Mon Sep 17 00:00:00 2001 From: Peter Leitzen Date: Tue, 22 Oct 2019 10:33:37 +0200 Subject: [PATCH] Remove remaining references to MySQL MySQL support was removed in https://github.com/sameersbn/docker-gitlab/pull/1961 --- README.md | 2 +- assets/runtime/functions | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e03de775..c2835fda 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/assets/runtime/functions b/assets/runtime/functions index 2665edc1..573b9892 100644 --- a/assets/runtime/functions +++ b/assets/runtime/functions @@ -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}}