Sign inSign up

ibhde/lcdproc

By ibhde

•Updated over 8 years ago

Multi-platform LCD display driver based on the official Debian packages.

Image
1

3.5K

ibhde/lcdproc repository overview

⁠LCDproc - Multi-platform LCD display driver

This is a docker image for LCDproc⁠ based on the offical Debian packages.

⁠Tagged Docker Images

Images are tagged according to the installed LCDproc version. All images are build using Debain GNU/Linux.

⁠Usage

The default command runs LCDd in foreground. You need to override the command to run lcdproc (see also docker-compose.yml example).

⁠docker run
$ docker run --rm -v /path/to/conf/LCDd.conf:/etc/LCDd.conf:ro -p 13666 --privileged ibhde/lcdproc
⁠docker-compose
# docker-compose.yml example
version: '3'
services:
  lcdd:
    image: ibhde/lcdproc
    volumes:
      - /path/to/conf/LCDd.conf:/etc/LCDd.conf:ro
    ports:
      - 13666:13666
    privileged: true
    restart: always

  lcdproc:
    image: ibhde/lcdproc
    command: [ "lcdproc", "-s", "lcdd", "-f", "-c", "/etc/lcdproc.conf", "L" ]
    hostname: myhostname
    volumes:
      - /path/to/conf/lcdproc.conf:/etc/lcdproc.conf:ro
    restart: always
    depends_on:
      - lcdd

Tag summary

Content type

Image

Digest

Size

49.6 MB

Last updated

over 8 years ago

docker pull ibhde/lcdproc