Fix BuildImage names

Add compatibility for Alpine Images.
This commit is contained in:
RoboMagus
2022-02-16 18:22:24 +01:00
committed by RoboMagus
parent 289420531a
commit 265134f677
4 changed files with 25 additions and 21 deletions
+6 -6
View File
@@ -1,13 +1,13 @@
# APT Install - Universal Docker mod
# Package Install - Universal Docker mod
Using this mod you can install any package during starup by providing it through the environment variable `APT_PACKAGES`. This is then passed into the installation command as such: `apt install -y --no-install-recommends ${APT_PACKAGES}`.
Using this mod you can install any package during starup by providing it through the environment variable `INSTALL_PACKAGES`. This is then passed into the installation command as such: `apt install -y --no-install-recommends ${INSTALL_PACKAGES}` or `apk add --no-cache ${INSTALL_PACKAGES}` for Alpine based images.
In any docker container arguments, set an environment variable `DOCKER_MODS=linuxserver/mods:universal-apt-install`
In any docker container arguments, set an environment variable `DOCKER_MODS=linuxserver/mods:universal-package-install`
If adding multiple mods, enter them in an array separated by `|`, such as `DOCKER_MODS=linuxserver/mods:universal-apt-install|linuxserver/mods:universal-stdout-logs`
If adding multiple mods, enter them in an array separated by `|`, such as `DOCKER_MODS=linuxserver/mods:universal-package-install|linuxserver/mods:universal-stdout-logs`
For example, to install `rsync`, `git` and `nginx` add the following lines to your docker compose service:
```yaml
- DOCKER_MODS=linuxserver/mods:universal-apt-install
- APT_PACKAGES=rsync git nginx
- DOCKER_MODS=linuxserver/mods:universal-package-install
- INSTALL_PACKAGES=rsync git nginx
```