Workflow update

main
technorabilia 2 months ago
parent b52a2ff834
commit a6ab893d58

@ -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

@ -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.` \

@ -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

@ -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

@ -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

@ -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

Loading…
Cancel
Save