![Industrial Internet Application Development](https://wfqqreader-1252317822.image.myqcloud.com/cover/328/36699328/b_36699328.jpg)
上QQ阅读APP看书,第一时间看更新
Running a sensor application on an RPi
To run a sensor application on an RPi, proceed as the following steps suggest:
- Insert an SD card into the RPi.
- Connect an Ethernet cable and open an SSH connection.
- Navigate to /home/pi/sensor.
- Build an image and run a Docker container:
# Build an image from a Dockerfile
docker build -t websocket-sensor .
#
# Run container in foreground
docker run --privileged -it --rm --name websocket-sensor-container websocket-sensor
#
# Run container in background
# docker run --privileged -d --rm --name websocket-sensor-container websocket-sensor
#
# Fetch the logs of a container
# docker logs -f websocket-sensor-container
#
# Stop running container
# docker stop websocket-sensor-container
![](https://epubservercos.yuewen.com/A7C1A6/19470387408851406/epubprivate/OEBPS/Images/e8498a23-a719-4e3f-b530-adc7fe630cc3.png?sign=1739276618-F47wLZgokXjF490qZf4JVU9QDMQHYslo-0-0be6ef4b927c16ac7acde0d3ceaf8f26)
Console output when a sensor app is running