-
Notifications
You must be signed in to change notification settings - Fork 67
/
docker-compose.yml
61 lines (61 loc) · 1.43 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: "3"
services:
mysql-5.5:
image: "mysql:5.5"
ports:
- "5050:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
mysql-5.6:
image: "mysql:5.6"
ports:
- "5060:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
command: "--innodb_log_file_size=1G"
mysql-5.7:
image: "mysql:5.7"
ports:
- "5070:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
mysql-5.7-sha:
image: "mysql:5.7"
ports:
- "5071:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
command: "--default-authentication-plugin=sha256_password"
mysql-8.0:
image: "mysql:8.0"
ports:
- "8000:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
mysql-8.0-mysql-native-password:
image: "mysql:8.0"
ports:
- "8001:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
command: "--default-authentication-plugin=mysql_native_password"
mysql-8.0-sha:
image: "mysql:8.0"
ports:
- "8002:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
command: "--default-authentication-plugin=sha256_password"
mariadb-10.3:
image: "mariadb:10.3"
ports:
- "10003:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
command: "--default-authentication-plugin=mysql_native_password"
mariadb-10.4:
image: "mariadb:10.4"
ports:
- "10004:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1