From 6589df7e51c70b4cff35e1bbb3457e39af19fd35 Mon Sep 17 00:00:00 2001 From: neingeist Date: Sat, 28 Jan 2023 22:35:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20How=20to=20use=20=E2=86=92=20exa?= =?UTF-8?q?mple=20docker-compose=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index b8000ea..e5b5e63 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,20 @@ 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=linuxserver/mods:universal-package-install|ghcr.io/neingeist/docker-mod-terminfos + - INSTALL_PACKAGES=tmux|vim|ncdu +# [...] +```