I pull an images from docker hub and run a container from that image by command:
docker run -d -p 8081:80 -v /Users/nguyenphong/Documents/tiki/fulfillment:/src --name fulfillment tala/nginx-php
docker container run good and web service work well, but when i started to code, i changed some code in my local dir, i see the code change in container folder but when i reload the web application, "nothing change".
When i run :
docker restart fulfillment
code applied.
So what i need to do to live reload the code change?