LED Matrix Application Docker Image
Overview
This project provides a Docker image for running the LED Matrix Application. The application can be configured and run either on a Raspberry Pi or locally using an emulator.
Pulling the Docker Image
To pull the latest Docker image from the GitHub Container Registry (GHCR), run the following command:
podman pull ghcr.io/starappeal/led-matrix-application-websocket:latest
Running the Docker Image
On a Raspberry Pi
When running on a Raspberry Pi, you must run the container as privileged to access hardware resources. Use the following command:
podman run --rm -it --privileged --env-file .env ghcr.io/starappeal/led-matrix-application-websocket:latest
Locally with Emulator
If running locally (e.g., on your development machine), ensure the .env file contains the following environment variables:
USE_EMULATOR=True
WEBSOCKET_URL=<Your WebSocket URL>
JWT_TOKEN=<Your JWT Token>
Use the following command to start the container locally:
podman run --rm -it --env-file .env -p 8888:8888 ghcr.io/starappeal/led-matrix-application-websocket:latest
Environment Variables
The .env file must include the following variables:
USE_EMULATOR: Set toTruewhen running locally to use the RGBMatrixEmulator.WEBSOCKET_URL: The URL of the WebSocket server the application will connect to.JWT_TOKEN: The JWT token used for authentication.
Example .env File
Here is an example .env file:
USE_EMULATOR=True
WEBSOCKET_URL=wss://example.com/socket
JWT_TOKEN=your-jwt-token-here
Notes
- Raspberry Pi Users: Ensure the container is run with
--privilegedto allow access to GPIO and hardware resources. - Local Development: The
USE_EMULATOR=Trueflag enables the emulator to simulate the LED matrix locally.
Troubleshooting
If you encounter issues:
-
Ensure all required environment variables are set correctly in the
.envfile. -
Verify that the container is run with
--privilegedon the Raspberry Pi. -
Check the logs for error messages using:
podman logs <container_id>