We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2d178b commit 281aed3Copy full SHA for 281aed3
docker-compose.yml
@@ -10,9 +10,10 @@ services:
10
- db
11
12
db:
13
- image: mysql:5.5
14
- # utf8mb4 would be better. This is for bug-for-bug consistency with svt4.
15
- command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci
+ # Hack: `-debian` because `mysql:8.0` uses oraclelinux 9, which requires x86-64-v2, but omega.svt cpu is too old.
+ image: mysql:8.0-debian
+ # The default plugin (caching_sha2_password) doesn't work with PHP < 7.4.
16
+ command: mysqld --default-authentication-plugin=mysql_native_password
17
environment:
18
MYSQL_ROOT_PASSWORD: root
19
MYSQL_DATABASE: anketa
0 commit comments