-
Notifications
You must be signed in to change notification settings - Fork 4
Troubleshooting notifications local
Tom Byers edited this page Jul 4, 2024
·
2 revisions
If you are running your local apps using notifications-local
, and you run into issues, try the following:
- Update and restart your Docker daemon
- If you get errors about
log/
folder, use sudo to remove that folder:sudo rm -rf log/
- If a particular container / app causes issues, try removing that particular container and rebuilding it with no cache, for example:
docker container rm template-preview-api
docker compose build template-preview-api
If all the containers are running during these steps, you may need to stop them (ctrl + c) and restart (make up
) for the changes to be picked up.
If you encounter issues that were not fixed with the help the above manual, and you manage to troubleshoot them, please add new troubleshooting instructions to this manual, thanks!