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

fixes to mysql and docker configurations #13

Merged
merged 3 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
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: 3 additions & 3 deletions config/mysql.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ key_buffer_size = 32M
max_allowed_packet = 64M
character-set-server=utf8mb4
collation-server=utf8mb4_unicode_ci
innodb_large_prefix=true
innodb_file_format=barracuda
innodb_file_per_table=true
# innodb_large_prefix=true
# innodb_file_format=barracuda
# innodb_file_per_table=true
4 changes: 1 addition & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
version: "3.8"

services:
database:
image: mysql:5.7
image: mysql:8
restart: unless-stopped
environment:
MYSQL_DATABASE: "db"
Expand Down