An open API service indexing awesome lists of open source software.

https://github.com/explodingcamera/docker-ledfx

ledfx
https://github.com/explodingcamera/docker-ledfx

docker dockerfile ledfx

Last synced: 4 months ago
JSON representation

ledfx

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`)