From a6ab893d58bdcafda9141231124f09fb747901b7 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Thu, 7 Mar 2024 00:27:14 +0000 Subject: [PATCH] Workflow update --- lsio/fail2ban/docker-compose.yaml | 2 +- lsio/fail2ban/docker-run.sh | 2 +- lsio/grocy/docker-compose.yaml | 2 +- lsio/grocy/docker-run.sh | 2 +- lsio/nginx/docker-compose.yaml | 2 +- lsio/nginx/docker-run.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lsio/fail2ban/docker-compose.yaml b/lsio/fail2ban/docker-compose.yaml index 1be62ea..216056a 100644 --- a/lsio/fail2ban/docker-compose.yaml +++ b/lsio/fail2ban/docker-compose.yaml @@ -21,7 +21,7 @@ services: # Set the container log verbosity. Valid options are -v, -vv, -vvv, -vvvv, or leaving the value blank or not setting the variable. - VERBOSITY=-vv # optional volumes: - # Contains all relevant configuration files. + # Persistent config files - ${BASEDIR:-/volume1/docker}/fail2ban/config:/config # Host logs. Mounted as Read Only. - ${BASEDIR:-/volume1/docker}/fail2ban/var/log:ro:/var/log:ro diff --git a/lsio/fail2ban/docker-run.sh b/lsio/fail2ban/docker-run.sh index ec9d06a..b14e8fc 100644 --- a/lsio/fail2ban/docker-run.sh +++ b/lsio/fail2ban/docker-run.sh @@ -12,7 +12,7 @@ docker run -d \ -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).` \ -e VERBOSITY=-vv `# optional` `# Set the container log verbosity. Valid options are -v, -vv, -vvv, -vvvv, or leaving the value blank or not setting the variable.` \ -p 80:80 `# Application WebUI` \ - -v ${BASEDIR:-/volume1/docker}/fail2ban/config:/config `# Contains all relevant configuration files.` \ + -v ${BASEDIR:-/volume1/docker}/fail2ban/config:/config `# Persistent config files` \ -v ${BASEDIR:-/volume1/docker}/fail2ban/var/log:ro:/var/log:ro `# Host logs. Mounted as Read Only.` \ -v ${BASEDIR:-/volume1/docker}/fail2ban/remotelogs/airsonic:ro:/remotelogs/airsonic:ro `# optional` `# Optional path to airsonic log folder. Mounted as Read Only.` \ -v ${BASEDIR:-/volume1/docker}/fail2ban/remotelogs/apache2:ro:/remotelogs/apache2:ro `# optional` `# Optional path to apache2 log folder. Mounted as Read Only.` \ diff --git a/lsio/grocy/docker-compose.yaml b/lsio/grocy/docker-compose.yaml index 250507c..09f4c5f 100644 --- a/lsio/grocy/docker-compose.yaml +++ b/lsio/grocy/docker-compose.yaml @@ -18,7 +18,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 config files - ${BASEDIR:-/volume1/docker}/grocy/config:/config ports: # will map the container's port 80 to port 9283 on the host diff --git a/lsio/grocy/docker-run.sh b/lsio/grocy/docker-run.sh index a228bde..06960e2 100644 --- a/lsio/grocy/docker-run.sh +++ b/lsio/grocy/docker-run.sh @@ -11,6 +11,6 @@ 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 9283:80 `# will map the container's port 80 to port 9283 on the host` \ - -v ${BASEDIR:-/volume1/docker}/grocy/config:/config `# this will store any uploaded data on the docker host` \ + -v ${BASEDIR:-/volume1/docker}/grocy/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/grocy diff --git a/lsio/nginx/docker-compose.yaml b/lsio/nginx/docker-compose.yaml index 6fc6327..63021b5 100644 --- a/lsio/nginx/docker-compose.yaml +++ b/lsio/nginx/docker-compose.yaml @@ -15,7 +15,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: - # Contains your www content and all relevant configuration files. + # Persistent config files - ${BASEDIR:-/volume1/docker}/nginx/config:/config ports: # http diff --git a/lsio/nginx/docker-run.sh b/lsio/nginx/docker-run.sh index 20190fe..d74d9ce 100644 --- a/lsio/nginx/docker-run.sh +++ b/lsio/nginx/docker-run.sh @@ -9,6 +9,6 @@ docker run -d \ -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 80:80 `# http` \ -p 443:443 `# https` \ - -v ${BASEDIR:-/volume1/docker}/nginx/config:/config `# Contains your www content and all relevant configuration files.` \ + -v ${BASEDIR:-/volume1/docker}/nginx/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/nginx