https://github.com/explodingcamera/docker-ledfx
ledfx
https://github.com/explodingcamera/docker-ledfx
docker dockerfile ledfx
Last synced: 4 months ago
JSON representation
ledfx
- Host: GitHub
- URL: https://github.com/explodingcamera/docker-ledfx
- Owner: explodingcamera
- License: isc
- Created: 2023-01-27T17:07:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-07T12:33:03.000Z (about 1 year ago)
- Last Synced: 2025-01-22T02:32:15.492Z (5 months ago)
- Topics: docker, dockerfile, ledfx
- Language: Dockerfile
- Homepage:
- Size: 19.5 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# LedFX Docker
> Simple Docker container for [LedFX](https://www.ledfx.app/).
>
> [`ghcr.io/explodingcamera/ledfx:latest`](https://github.com/explodingcamera/docker-ledfx/pkgs/container/ledfx)
[`docker.io/explodingcamera/ledfx:latest`](https://hub.docker.com/r/explodingcamera/ledfx)Only tested using `/dev/snd/`, should work with pulseaudio as well.
## Tags
- [`latest`](https://github.com/explodingcamera/docker-ledfx/pkgs/container/ledfx) - Latest stable release
- [`v2.x.x`](https://github.com/explodingcamera/docker-ledfx/pkgs/container/ledfx) - Specific release version (updated weekly)## Usage
### Docker
```bash
docker run -d \
--name ledfx \
--restart=always \# instead of binding the port, you can use --net=host
# which will also allow ledfx to discover your devices
-p 8888:8888 \-e PUID=1000 \
-e PGID=1000 \# e.g give access to a usb sound card
--device=/dev/snd \
-v /path/to/config:/home/ledfx/.ledfx/config.json \
ghcr.io/explodingcamera/ledfx:latest
```## Environment variables
- `PUID` - User ID (default: `1000`)
- `PGID` - Group ID (default: `1000`)