We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 736b0e1 commit 9cd7d0bCopy full SHA for 9cd7d0b
raspberry-pi
@@ -0,0 +1,19 @@
1
+# Preparar Raspberry Pi
2
+sudo apt-get update
3
+sudo apt-get install -y docker.io
4
+sudo systemctl enable docker
5
+sudo usermod -aG docker pi
6
+
7
+# Instalar Neural Nexus
8
+docker run -d \
9
+ --name neural-nexus-rpi \
10
+ --restart unless-stopped \
11
+ -v /opt/neural-nexus:/app/data \
12
+ -v /opt/neural-nexus/config:/app/config \
13
+ -p 8080:8080 \
14
+ -e DEVICE_TYPE=raspberry-pi \
15
+ -e ORCHESTRATOR_URL=https://orchestrator.your-domain.com \
16
+ neuralnexus/raspberry-pi:latest
17
18
+# Verificar funcionamiento
19
+docker logs neural-nexus-rpi
0 commit comments