A Docker mod for linuxserver.io Docker images to install terminfo entries.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
neingeist 5e4962e538 ⚙️ .github: add sha tag 1 year ago
.github/workflows ⚙️ .github: add sha tag 1 year ago
root/etc/terminfo install terminfo for xterm-kitty 1 year ago
.dockerignore 🐳 .dockerignore .github 1 year ago
Dockerfile 🐳 set image source label 1 year ago
README.md 📝 How to use → switch example docker mods around 1 year ago

README.md

docker-mod-terminfos

A Docker mod for linuxserver.io Docker images to install terminfo entries.

This mod currently installs the following terminfo entries:

  • rxvt-unicode-256color
  • xterm-kitty

How to use

Set DOCKER_MODS=ghcr.io/neingeist/docker-mod-terminfos.

For example, in a docker-compose.yml file for an openssh-server container:

# [...]
services:
  sshd-halde:
    image: lscr.io/linuxserver/openssh-server:latest
    # [...]
    environment:
      - DOCKER_MODS=ghcr.io/neingeist/docker-mod-terminfos|linuxserver/mods:universal-package-install
      - INSTALL_PACKAGES=tmux|vim|ncdu
# [...]