Skip to content

Commit

Permalink
Merge pull request #369 from amplication/fix/msql-latest-docker-issue
Browse files Browse the repository at this point in the history
chore(mysql): bump version
  • Loading branch information
overbit authored May 2, 2024
2 parents 4f08fd1 + bbb0b37 commit 64b24c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/db-mysql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@amplication/plugin-db-mysql",
"version": "1.1.10",
"version": "1.1.11",
"description": "Use a MySQL database in a service generated by Amplication",
"main": "dist/index.js",
"nx": {},
Expand Down
4 changes: 2 additions & 2 deletions plugins/db-mysql/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const updateDockerComposeProperties: CreateServerDockerComposeParams["upd
ports: ["1234:8080"],
},
db: {
image: "mysql",
image: "mysql:8.3",
command: "--default-authentication-plugin=mysql_native_password",
restart: "always",
ports: ["${DB_PORT}:3306"],
Expand Down Expand Up @@ -55,7 +55,7 @@ export const updateDockerComposeDevProperties: CreateServerDockerComposeParams["
{
services: {
db: {
image: "mysql",
image: "mysql:8.3",
command: "--default-authentication-plugin=mysql_native_password",
restart: "always",
ports: ["${DB_PORT}:3306"],
Expand Down

0 comments on commit 64b24c4

Please sign in to comment.