try different port to fix github actions

This commit is contained in:
Alexander Meindl
2021-03-18 07:35:40 +01:00
parent 8715f90b8f
commit b63773c5ab
2 changed files with 4 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ jobs:
MYSQL_USER: root
MYSQL_PASSWORD: 'BestPasswordEver'
ports:
- 3306:3306
- 33306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s

View File

@@ -2,7 +2,7 @@ production:
adapter: mysql2
database: redmine
host: 127.0.0.1
port: 3306
port: 33306
username: root
password: BestPasswordEver
encoding: utf8mb4
@@ -10,7 +10,7 @@ production:
development:
adapter: mysql2
database: redmine
port: 3306
port: 33306
host: 127.0.0.1
username: root
password: BestPasswordEver
@@ -19,7 +19,7 @@ development:
test:
adapter: mysql2
database: redmine
port: 3306
port: 33306
host: 127.0.0.1
username: root
password: BestPasswordEver