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 0abc295 commit 24b9c90Copy full SHA for 24b9c90
docker-compose.override.yml
@@ -4,10 +4,12 @@ version: "3.4"
4
services:
5
php:
6
volumes:
7
+ # The "cached" option has no effect on Linux but improves performance on Mac
8
- ./:/srv/app:rw,cached
9
- ./docker/php/conf.d/symfony.dev.ini:/usr/local/etc/php/conf.d/symfony.ini
- # If you develop on Linux, comment out the following volumes to just use bind-mounted project directory from host
10
- # - ./var:/srv/app/var:rw
+ # If you develop on Mac you can remove the var/ directory from the bind-mount
11
+ # for better performance by enabling the next line
12
+ # - /srv/app/var
13
environment:
14
APP_ENV: dev
15
0 commit comments