Same that #18 I'm adding docker-compose.local.yml to have the project data outside the container like this: ```yml version: '2.1' services: sylius: volumes: - ./sylius:/var/www/sylius ``` But, this does not work. I throw the error: File not found. I'm only want: ```yml ###### docker-compose.yml version: '3.1' services: wordpress: image: wordpress restart: always ports: - 8080:80 environment: WORDPRESS_DB_PASSWORD: example mysql: image: mysql:5.7 restart: always environment: MYSQL_ROOT_PASSWORD: example ###### docker-compose.local.yml version: '3.1' services: wordpress: volumes: - ./app:/var/www/html ```
Same that #18
I'm adding docker-compose.local.yml to have the project data outside the container like this:
But, this does not work. I throw the error: File not found.
I'm only want: