diff --git a/Troubleshooting.md b/Troubleshooting.md index df33b37..b0e62cc 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -35,3 +35,24 @@ b'{"ok":false,"error_code":400,"description":"Bad Request: message is too long"} ``` You can easily get out of length limitations is you're including `{current_snapshot}` into the Notification Body. + +## Code Changes Not Reflecting? + +If you are making changes to your local repository and they are not showing up in the Docker image, try the following: + +Make sure you’ve tried using Docker composer instead of Docker standalone: +``` +$ docker-compose up -d +``` + +In the likely case that this doesn’t fix the issue, you will need to edit the docker-compose.yml file. Edit the services section so it looks like the following: + +``` +services: +    changedetection: +      build: . +      container_name: changedetection +      hostname: changedetection +      volumes: +        - changedetection-data:/datastore +``` \ No newline at end of file