diff --git a/lsio/prowlarr/docker-compose.yaml b/lsio/prowlarr/docker-compose.yaml index 8461bfe..396399c 100644 --- a/lsio/prowlarr/docker-compose.yaml +++ b/lsio/prowlarr/docker-compose.yaml @@ -22,6 +22,6 @@ services: # Database and Prowlarr configs - ${BASEDIR:-/volume1/docker}/prowlarr/config:/config ports: - # The port for the Prowlarr webinterface + # The port for the Prowlarr web UI - 9696:9696 restart: unless-stopped diff --git a/lsio/prowlarr/docker-run.sh b/lsio/prowlarr/docker-run.sh index 679d59b..cf43e1e 100644 --- a/lsio/prowlarr/docker-run.sh +++ b/lsio/prowlarr/docker-run.sh @@ -11,7 +11,7 @@ docker run -d \ -e PUID=${PUID:-1024} `# for UserID` \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ - -p 9696:9696 `# The port for the Prowlarr webinterface` \ + -p 9696:9696 `# The port for the Prowlarr web UI` \ -v ${BASEDIR:-/volume1/docker}/prowlarr/config:/config `# Database and Prowlarr configs` \ --restart unless-stopped \ ghcr.io/linuxserver/prowlarr diff --git a/lsio/radarr/docker-compose.yaml b/lsio/radarr/docker-compose.yaml index b9878f3..8b32e00 100644 --- a/lsio/radarr/docker-compose.yaml +++ b/lsio/radarr/docker-compose.yaml @@ -22,6 +22,6 @@ services: # Location of download managers output directory (See note in Application setup) - ${BASEDIR:-/volume1/docker}/radarr/downloads:/downloads # optional ports: - # The port for the Radarr webinterface + # The port for the Radarr Web UI - 7878:7878 restart: unless-stopped diff --git a/lsio/radarr/docker-run.sh b/lsio/radarr/docker-run.sh index 5c15682..702188d 100644 --- a/lsio/radarr/docker-run.sh +++ b/lsio/radarr/docker-run.sh @@ -7,7 +7,7 @@ docker run -d \ -e PUID=${PUID:-1024} `# for UserID` \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ - -p 7878:7878 `# The port for the Radarr webinterface` \ + -p 7878:7878 `# The port for the Radarr Web UI` \ -v ${BASEDIR:-/volume1/docker}/radarr/config:/config `# Database and Radarr configs` \ -v ${BASEDIR:-/volume1/docker}/radarr/movies:/movies `# optional` `# Location of Movie library on disk (See note in Application setup)` \ -v ${BASEDIR:-/volume1/docker}/radarr/downloads:/downloads `# optional` `# Location of download managers output directory (See note in Application setup)` \ diff --git a/lsio/sickgear/docker-compose.yaml b/lsio/sickgear/docker-compose.yaml index 5a9887c..f86c27b 100644 --- a/lsio/sickgear/docker-compose.yaml +++ b/lsio/sickgear/docker-compose.yaml @@ -17,7 +17,7 @@ services: # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} volumes: - # this will store any uploaded data on the docker host + # Persistent configuration files. - ${BASEDIR:-/volume1/docker}/sickgear/config:/config # where you store your tv shows - ${BASEDIR:-/volume1/docker}/sickgear/tv:/tv diff --git a/lsio/sickgear/docker-run.sh b/lsio/sickgear/docker-run.sh index ff03bc0..a4b661d 100644 --- a/lsio/sickgear/docker-run.sh +++ b/lsio/sickgear/docker-run.sh @@ -10,7 +10,7 @@ docker run -d \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -p 8081:8081 `# will map the container's port 8081 to port 8081 on the host` \ - -v ${BASEDIR:-/volume1/docker}/sickgear/config:/config `# this will store any uploaded data on the docker host` \ + -v ${BASEDIR:-/volume1/docker}/sickgear/config:/config `# Persistent configuration files.` \ -v ${BASEDIR:-/volume1/docker}/sickgear/tv:/tv `# where you store your tv shows` \ -v ${BASEDIR:-/volume1/docker}/sickgear/downloads:/downloads `# your downloads folder for post processing (must not be download in progress)` \ --restart unless-stopped \