I have a development environment I\'m dockerizing and I would like the ability to livereload my changes without having to rebuild docker images. I\'m using docker compose be
Checkout their documentation
From the looks of it you could do the following on your docker-compose.yml
volumes: - ./:/app
Where ./ is the host directory, and /app is the target directory for the containers.
./
/app