Skip to content

Commit

Permalink
Dev Container: pin to MySQL to 8.4 (#6130)
Browse files Browse the repository at this point in the history
* Specify MySQL 8.0 for compatibility with specified command

* fix(devcontainer): pin mysql to 8.4

---------

Co-authored-by: Volodymyr Kolesnykov <[email protected]>
  • Loading branch information
chriszarate and sjinks authored Feb 6, 2025
1 parent a3b0777 commit 4b190cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ services:
ports:
- 80:80
database:
image: mysql:8
command: mysqld --sql-mode=ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION --max_allowed_packet=67M --default-authentication-plugin=mysql_native_password
image: mysql:8.4
command: mysqld --sql-mode=ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION --max_allowed_packet=67M --mysql-native-password=ON
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: wordpress
Expand Down

0 comments on commit 4b190cb

Please sign in to comment.