We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 993e681 commit a6463dfCopy full SHA for a6463df
.docker/php-config/11-mysql-socket.ini
@@ -0,0 +1 @@
1
+; pdo_mysql.default_socket = /var/run/mysqld/mysql.sock'
compose.yaml
@@ -8,6 +8,15 @@ services:
8
context: .docker/
9
volumes:
10
- ".:/var/www/html:rw,z"
11
+ - "mysql_socket:/var/run/mysqld/mysqld.sock:rw"
12
13
# memcached:
14
# image: memcached:1.6.13-alpine3.15
15
+ mysql:
16
+ image: mysql:8.3
17
+ profiles:
18
+ - full
19
+ volumes:
20
21
+volumes:
22
+ mysql_socket:
0 commit comments