docker-compose-livereloader
docker-compose-livereloader copied to clipboard
A docker compose pattern to enable automatic container reloading.
## Overview This PR should be merged, only when https://hub.docker.com/r/apogiatzis/livereloading is built with newer updates on master branch. It is also a good practice to create git tags from master...
Can you please create a new image and deploy to Docker Hub based on https://github.com/apogiatzis/docker-compose-livereloader/pull/14 The current latest image on Docker Hub does not work on the new Apple chips.
I see in the examples 2 different images, and I found that only `dreampathsprojekt` one fixes #13 (Multiple instances). Would be nice to have clarification here. ``` image: dreampathsprojekt/livereloading ```...
When I change some file the live reloader are triggered, but the change isn't applied  Am I commiting any mistake? **Dockerfile** ``` FROM public.ecr.aws/lambda/python:3.8 as build RUN yum install...
Thanks for this awesome tool! Any way to ignore files/folders from being watched? like IDE folders and stuff. Thanks again!
I noticed that this wasn't working at all in Windows (see `docker-compose.yml` config below). When editing the file on the host machine, nothing happens, however if you manually update the...
I have tried to follow your guide given in [here](https://medium.com/better-programming/live-reloading-with-docker-compose-for-efficient-development-356d50e91e39). This is my `docker-compose` file. ``` version: '3' services: testserver: image: testserver build: context: . dockerfile: Dockerfile network_mode: "host" live-reloader:...
Bundling a few things into one issue... 1. First, super clever idea! Very clean, no modification of reloadee, no stuff on host ... 2. The following in the README had...