docs
This commit is contained in:
@@ -80,21 +80,7 @@ These are the most important settings to get at least some output in your Device
|
|||||||
|
|
||||||
💡 Before creating a new issue, please check if a similar issue was [already resolved](https://github.com/jokob-sk/Pi.Alert/issues?q=is%3Aissue+is%3Aclosed).
|
💡 Before creating a new issue, please check if a similar issue was [already resolved](https://github.com/jokob-sk/Pi.Alert/issues?q=is%3Aissue+is%3Aclosed).
|
||||||
|
|
||||||
**Permissions**
|
Check also common issues and [debugging tips](https://github.com/jokob-sk/Pi.Alert/blob/main/docs/DEBUG_TIPS.md).
|
||||||
|
|
||||||
* If facing issues (AJAX errors, can't write to DB, empty screen, etc,) make sure permissions are set correctly, and check the logs under `/home/pi/pialert/front/log`.
|
|
||||||
* To solve permission issues you can try setting the owner and group of the `pialert.db` by executing the following on the host system: `docker exec pialert chown -R www-data:www-data /home/pi/pialert/db/pialert.db`.
|
|
||||||
* Map to local User and Group IDs. Specify the enviroment variables `HOST_USER_ID` and `HOST_USER_GID` if needed.
|
|
||||||
* If still facing issues, try to map the pialert.db file (⚠ not folder) to `:/home/pi/pialert/db/pialert.db` (see Examples below for details)
|
|
||||||
|
|
||||||
**Container restarts / crashes**
|
|
||||||
|
|
||||||
* Check the logs for details. Often a required setting for a notification method is missing.
|
|
||||||
|
|
||||||
**unable to resolve host**
|
|
||||||
|
|
||||||
* Check that your `SCAN_SUBNETS` variable is using the correct mask and `--interface` as outlined in the instructions above.
|
|
||||||
|
|
||||||
|
|
||||||
Docker-compose examples can be found below.
|
Docker-compose examples can be found below.
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ If possible, check if your issue got fixed in the `_dev` image before opening a
|
|||||||
|
|
||||||
> ⚠ Please backup your DB and config beforehand!
|
> ⚠ Please backup your DB and config beforehand!
|
||||||
|
|
||||||
PLease also search [open issues](https://github.com/jokob-sk/Pi.Alert/issues).
|
Please also search [open issues](https://github.com/jokob-sk/Pi.Alert/issues).
|
||||||
|
|
||||||
## Surfacing errors when container restarts
|
## Surfacing errors when container restarts
|
||||||
|
|
||||||
@@ -45,3 +45,32 @@ services:
|
|||||||
# Other service configurations...
|
# Other service configurations...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## 📃Common issues
|
||||||
|
|
||||||
|
### Permissions
|
||||||
|
|
||||||
|
* If facing issues (AJAX errors, can't write to DB, empty screen, etc,) make sure permissions are set correctly, and check the logs under `/home/pi/pialert/front/log`.
|
||||||
|
* To solve permission issues you can try setting the owner and group of the `pialert.db` by executing the following on the host system: `docker exec pialert chown -R www-data:www-data /home/pi/pialert/db/pialert.db`.
|
||||||
|
* Map to local User and Group IDs. Specify the enviroment variables `HOST_USER_ID` and `HOST_USER_GID` if needed.
|
||||||
|
* If still facing issues, try to map the pialert.db file (⚠ not folder) to `:/home/pi/pialert/db/pialert.db` (see Examples below for details)
|
||||||
|
|
||||||
|
### Container restarts / crashes
|
||||||
|
|
||||||
|
* Check the logs for details. Often a required setting for a notification method is missing.
|
||||||
|
|
||||||
|
### unable to resolve host
|
||||||
|
|
||||||
|
* Check that your `SCAN_SUBNETS` variable is using the correct mask and `--interface` as outlined in the instructions above.
|
||||||
|
|
||||||
|
### sudo execution failing (e.g.: on arpscan) on a Raspberry Pi 4
|
||||||
|
|
||||||
|
> sudo: unexpected child termination condition: 0
|
||||||
|
|
||||||
|
Resolution based on [this issue](https://github.com/linuxserver/docker-papermerge/issues/4#issuecomment-1003657581)
|
||||||
|
|
||||||
|
```
|
||||||
|
wget ftp.us.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.5.3-2_armhf.deb
|
||||||
|
sudo dpkg -i libseccomp2_2.5.3-2_armhf.deb
|
||||||
|
```
|
||||||
|
|
||||||
|
The link above will probably break in time too. Go to https://packages.debian.org/sid/armhf/libseccomp2/download to find the new version number and put that in the url.
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ Suggested test cases:
|
|||||||
Some additional context:
|
Some additional context:
|
||||||
|
|
||||||
* Permanent settings/config is stored in the `pialert.conf` file
|
* Permanent settings/config is stored in the `pialert.conf` file
|
||||||
* Currently temporary (session?) settings are stored in the `Parameters` DB table as key - value pairs. This table is wiped during a container rebuild/restart and it's values re-initialized from cookies / session data from the browser.
|
* Currently temporary (session?) settings are stored in the `Parameters` DB table as key-value pairs. This table is wiped during a container rebuild/restart and it's values re-initialized from cookies / session data from the browser.
|
||||||
|
|
||||||
## 🐛 Submitting an issue or bug
|
## 🐛 Submitting an issue or bug
|
||||||
|
|
||||||
@@ -101,5 +101,6 @@ Before submitting a new issue please spend a couple of minutes on research:
|
|||||||
|
|
||||||
* Check [🛑 Common issues](https://github.com/jokob-sk/Pi.Alert/tree/main/dockerfiles#-common-issues)
|
* Check [🛑 Common issues](https://github.com/jokob-sk/Pi.Alert/tree/main/dockerfiles#-common-issues)
|
||||||
* Check [💡 Closed issues](https://github.com/jokob-sk/Pi.Alert/issues?q=is%3Aissue+is%3Aclosed) if a similar issue was solved in the past.
|
* Check [💡 Closed issues](https://github.com/jokob-sk/Pi.Alert/issues?q=is%3Aissue+is%3Aclosed) if a similar issue was solved in the past.
|
||||||
|
* When submitting an issue ❗[enable debug](https://github.com/jokob-sk/Pi.Alert/blob/main/docs/DEBUG_TIPS.md)❗
|
||||||
|
|
||||||
⚠ Please follow the pre-defined issue template to resolve your issue faster.
|
⚠ Please follow the pre-defined issue template to resolve your issue faster.
|
||||||
|
|||||||
Reference in New Issue
Block a user