Skip to content

Commit 430e7de

Browse files
committed
Mysql 8.4
1 parent 388e7cc commit 430e7de

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ up:
4646
cli:
4747
docker-compose exec --user=$(UID) php bash
4848

49+
cli_mysql:
50+
docker-compose exec --user=$(UID) mysql bash
51+
4952
migrate:
5053
docker-compose run --user=$(UID) --rm php sh -c 'mkdir -p "tests/tmp/app"'
5154
docker-compose run --user=$(UID) --rm php sh -c 'mkdir -p "tests/tmp/docker_app"'

docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ services:
2727
- maria
2828
tty: true
2929
mysql:
30-
image: mysql:8.0.37
30+
image: mysql:8.4
3131
ports:
3232
- '13306:3306'
33+
command: mysqld --mysql-native-password=ON
3334
volumes:
3435
- ./tests/tmp/mysql:/var/lib/mysql:rw
3536
environment:

0 commit comments

Comments
 (0)