Skip to content

Commit 9cd7d0b

Browse files
authored
Create raspberry-pi
1 parent 736b0e1 commit 9cd7d0b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

raspberry-pi

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)