File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ services:
12
12
13
13
depends_on :
14
14
- postgres
15
- - mariadb
15
+ - mysql
16
16
- redis
17
17
- memcached
18
18
@@ -32,13 +32,13 @@ services:
32
32
POSTGRES_DB : postgres
33
33
POSTGRES_PASSWORD : postgres
34
34
35
- mariadb :
36
- image : mariadb:lts
35
+ mysql :
36
+ image : mysql:latest
37
37
restart : unless-stopped
38
38
volumes :
39
- - mariadb -data:/var/lib/mysql
39
+ - mysql -data:/var/lib/mysql
40
40
environment :
41
- MARIADB_ROOT_PASSWORD : root
41
+ MYSQL_ROOT_PASSWORD : root
42
42
43
43
redis :
44
44
image : valkey/valkey:8
@@ -53,5 +53,5 @@ services:
53
53
54
54
volumes :
55
55
postgres-data :
56
- mariadb -data :
56
+ mysql -data :
57
57
redis-data :
Original file line number Diff line number Diff line change 22
22
"PGHOST" : " postgres" ,
23
23
"PGUSER" : " postgres" ,
24
24
"PGPASSWORD" : " postgres" ,
25
- "MYSQL_HOST" : " mariadb " ,
25
+ "MYSQL_HOST" : " mysql " ,
26
26
"REDIS_URL" : " redis://redis/0" ,
27
27
"MEMCACHE_SERVERS" : " memcached:11211"
28
28
},
You can’t perform that action at this time.
0 commit comments