From df82b0f6acdbb0bde0ebbb5a27c8407f7bf4b778 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Sun, 28 Jan 2024 01:21:26 +0000 Subject: [PATCH] Workflow update --- lsio/grav/docker-compose.yaml | 2 +- lsio/grav/docker-run.sh | 2 +- lsio/swag/docker-compose.yaml | 2 +- lsio/swag/docker-run.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lsio/grav/docker-compose.yaml b/lsio/grav/docker-compose.yaml index 671ac22..6b619b8 100644 --- a/lsio/grav/docker-compose.yaml +++ b/lsio/grav/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 all relevant configuration files. + # Persistent config files - ${BASEDIR:-/volume1/docker}/grav/config:/config ports: # Port for web frontend diff --git a/lsio/grav/docker-run.sh b/lsio/grav/docker-run.sh index b44d607..850f4f2 100644 --- a/lsio/grav/docker-run.sh +++ b/lsio/grav/docker-run.sh @@ -8,6 +8,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 80:80 `# Port for web frontend` \ - -v ${BASEDIR:-/volume1/docker}/grav/config:/config `# Contains all relevant configuration files.` \ + -v ${BASEDIR:-/volume1/docker}/grav/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/grav diff --git a/lsio/swag/docker-compose.yaml b/lsio/swag/docker-compose.yaml index ac5a259..00ee35b 100644 --- a/lsio/swag/docker-compose.yaml +++ b/lsio/swag/docker-compose.yaml @@ -40,7 +40,7 @@ services: # Set to `true` to retrieve certs in staging mode. Rate limits will be much higher, but the resulting cert will not pass the browser's security test. Only to be used for testing purposes. - STAGING=false # optional volumes: - # All the config files including the webroot reside here. + # Persistent config files - ${BASEDIR:-/volume1/docker}/swag/config:/config ports: # Https port diff --git a/lsio/swag/docker-run.sh b/lsio/swag/docker-run.sh index 6300073..525ce20 100644 --- a/lsio/swag/docker-run.sh +++ b/lsio/swag/docker-run.sh @@ -23,6 +23,6 @@ docker run -d \ -e STAGING=false `# optional` `# Set to `true` to retrieve certs in staging mode. Rate limits will be much higher, but the resulting cert will not pass the browser's security test. Only to be used for testing purposes.` \ -p 443:443 `# Https port` \ -p 80:80 `# optional` `# Http port (required for http validation and http -> https redirect)` \ - -v ${BASEDIR:-/volume1/docker}/swag/config:/config `# All the config files including the webroot reside here.` \ + -v ${BASEDIR:-/volume1/docker}/swag/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/swag