This is a docker image for LCDproc based on the offical Debian packages.
Images are tagged according to the installed LCDproc version. All images are build using Debain GNU/Linux.
-
This image is build using Debian stretch and should be considered stable.
-
This image is build using Debian buster and should be considered unstable.
-
This image is build using Debian wheezy and should be considered obsolete.
The default command runs LCDd
in foreground. You need to override the command to run lcdproc
(see also docker-compose.yml example).
$ docker run --rm -v /path/to/conf/LCDd.conf:/etc/LCDd.conf:ro -p 13666 --privileged ibhde/lcdproc
# 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