Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate mysql to 8.4 in Docker compose #10548

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,13 @@ services:
condition: service_completed_successfully

wca_db:
image: mysql:8.0
# You will have to run docker exec -it database mysql to connect to the database and then
# ALTER USER 'root'@'%' IDENTIFIED WITH caching_sha2_password BY '';
# To upgrade your DB from mysql8.0 to mysql8.4
image: mysql:8.4
container_name: "database"
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
command: --authentication-policy=mysql_native_password
ports:
- "3306:3306"
volumes:
Expand Down
Loading