From fda6a1780b3ca9c5fd38cf95639b47857e7db02e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 16 Oct 2020 15:07:19 +0000 Subject: [PATCH] Bot Updating Documentation --- images/docker-sabnzbd.md | 43 ++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/images/docker-sabnzbd.md b/images/docker-sabnzbd.md index 40faa709b..75b1df19f 100755 --- a/images/docker-sabnzbd.md +++ b/images/docker-sabnzbd.md @@ -39,25 +39,7 @@ This image provides various versions that are available via tags. `latest` tag u Here are some example snippets to help you get started creating a container from this image. -### docker - -``` -docker create \ - --name=sabnzbd \ - -e PUID=1000 \ - -e PGID=1000 \ - -e TZ=Europe/London \ - -p 8080:8080 \ - -p 9090:9090 \ - -v /path/to/data:/config \ - -v /path/to/downloads:/downloads \ - -v /path/to/incomplete/downloads:/incomplete-downloads `#optional` \ - --restart unless-stopped \ - linuxserver/sabnzbd -``` - - -### docker-compose +### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose)) Compatible with docker-compose v2 schemas. @@ -75,7 +57,6 @@ services: volumes: - /path/to/data:/config - /path/to/downloads:/downloads - volumes: - /path/to/incomplete/downloads:/incomplete-downloads #optional ports: - 8080:8080 @@ -83,6 +64,24 @@ services: restart: unless-stopped ``` +### docker cli + +``` +docker run -d \ + --name=sabnzbd \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Europe/London \ + -p 8080:8080 \ + -p 9090:9090 \ + -v /path/to/data:/config \ + -v /path/to/downloads:/downloads \ + -v /path/to/incomplete/downloads:/incomplete-downloads `#optional` \ + --restart unless-stopped \ + linuxserver/sabnzbd +``` + + ## Parameters Docker images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. @@ -156,9 +155,9 @@ See here for info on some of the switch settings for sabnzbd https://sabnzbd.org ## Docker Mods -[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=mods&query=%24.mods%5B%27sabnzbd%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=sabnzbd "view available mods for this container.") +[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=sabnzbd&query=%24.mods%5B%27sabnzbd%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=sabnzbd "view available mods for this container.") [![Docker Universal Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=universal&query=%24.mods%5B%27universal%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=universal "view available universal mods.") -We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) can be accessed via the dynamic badge above. +We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above. ## Support Info