Hi all,
i’m using docker desktop on windows with wsl.
Yesterday i updated docker to version 19.03.5 and now the bind mounts in my containers are no longer reactive. I never had issues before this update but now when i launch my containers, after the first edit to any file, it stops to stay in sync with the host’s files.
here is my docker-compose.yml:
version: "3"
services:
php:
build: ./php
container_name: php
depends_on:
- db
volumes:
- ../../WWW/:/code
- /code/treddy/api/vendor
web:
image: nginx:latest
container_name: web
ports:
- 80:80
- 443:443
volumes:
- ../../WWW/:/code
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- php
db:
image: mysql:5.7
container_name: db
ports:
- "3306:3306"
volumes:
- ./dbdata:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: password
Hope you can help me, thanks.