-
I'm trying to install on raspberry pi 3b, but without success here I expose my yaml
I have tried all those containers and they all give me the same error
Is there a solution or is it impossible to use it on raspberry pi? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi @kanuto0o , I haven't tried running it on a Raspberry PI3 B, but it may be doable. What I've noticed is that you are specifying the port mappings. That's not needed as the container is running on the host network. Your compose file should look e.g (notice missing version: "3.3"
services:
netalertx:
container_name: netalertx
image: "jokobsk/netalertx:latest"
network_mode: "host"
restart: unless-stopped
volumes:
- ./data/config:/app/config
- ./data/db:/app/db
- ./data/logs:/app/front/log
environment:
- TZ=Europe/Madrid
- PORT=20211 if this still doesn't work, you can try to start without mounting folders - just as a test - to see if the issue is permission-related: version: "3.3"
services:
netalertx:
container_name: netalertx
image: "jokobsk/netalertx:latest"
network_mode: "host"
restart: unless-stopped
environment:
- TZ=Europe/Madrid
- PORT=20211 if this works, double check the folders have the right permissions and check this guide: https://github.com/jokob-sk/NetAlertX/blob/main/docs/FILE_PERMISSIONS.md |
Beta Was this translation helpful? Give feedback.
-
Hello, I come with new news, after several attempts in the end it was because I had an old version of Raspbian, I updated to the latest one by downloading the image and burning it on the Raspberry and everything works now I have to configure it, use this docker.
|
Beta Was this translation helpful? Give feedback.
Hello, I come with new news, after several attempts in the end it was because I had an old version of Raspbian, I updated to the latest one by downloading the image and burning it on the Raspberry and everything works now I have to configure it, use this docker.