Updating mysql version to allow to run on OS X as well

This commit is contained in:
Samir Faci 2024-10-07 08:42:44 -04:00
parent c2703558d7
commit 743df3ae7d
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ setup: checkout-testdata docker-compose-up
checkout-testdata: checkout-testdata:
git submodule init git submodule init
git submodule update git submodule update
cd ./testdata && git fetch && git checkout master && git pull # cd ./testdata && git fetch && git checkout master && git pull
# docker-compose-up will download docker image for each of the databases listed in docker-compose.yaml file, and then it will initialize # docker-compose-up will download docker image for each of the databases listed in docker-compose.yaml file, and then it will initialize
# database with testdata retrieved in previous step. # database with testdata retrieved in previous step.

View file

@ -13,7 +13,7 @@ services:
- ./testdata/init/postgres:/docker-entrypoint-initdb.d - ./testdata/init/postgres:/docker-entrypoint-initdb.d
mysql: mysql:
image: mysql:8.0.27 image: mysql:8.0
command: ['--default-authentication-plugin=mysql_native_password', '--log_bin_trust_function_creators=1'] command: ['--default-authentication-plugin=mysql_native_password', '--log_bin_trust_function_creators=1']
restart: always restart: always
environment: environment: