Skip to content

Commit c1078bb

Browse files
ivnhkrosa
authored andcommitted
fix: Change MySQL port to 33066
Resolves: #528 In order to avoid conflict with MySQL Protocol X, the port was changed to `33066`. The change was tested locally by running `docker compose up`
1 parent 6dc5c66 commit c1078bb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
env:
4242
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
4343
ports:
44-
- 33060:3306
44+
- 33066:3306
4545
options: --health-cmd "mysql -h localhost -e \"select now()\"" --health-interval 1s --health-timeout 5s --health-retries 30
4646
postgres:
4747
image: postgres:15.1

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
99
volumes:
1010
- db:/var/lib/mysql
11-
ports: [ "127.0.0.1:33060:3306" ]
11+
ports: [ "127.0.0.1:33066:3306" ]
1212
postgres:
1313
image: postgres:15.1
1414
environment:

test/dummy/config/database.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ default: &default
3333
username: root
3434
pool: 20
3535
host: "127.0.0.1"
36-
port: 33060
36+
port: 33066
3737
<% end %>
3838

3939
development:

0 commit comments

Comments
 (0)