Workflow update

main
technorabilia 6 months ago
parent 98a80a894a
commit fbf6729637

@ -17,15 +17,19 @@ services:
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam} - TZ=${TZ:-Europe/Amsterdam}
# specify the URL or IP address of your Quassel Core instance # specify the URL or IP address of your Quassel Core instance
- QUASSEL_CORE=192.168.1.10 - QUASSEL_CORE=192.168.1.10 # optional
# specify the port of your Quassel Core instance # specify the port of your Quassel Core instance
- QUASSEL_PORT=4242 - QUASSEL_PORT=4242 # optional
# Set to `true` to have Quassel web serve over https on port 64443 instead of http on port 64080.
- QUASSEL_HTTPS= # optional
# Specify a url-base in reverse proxy setups ie. `/quassel` # Specify a url-base in reverse proxy setups ie. `/quassel`
- URL_BASE=/quassel # optional - URL_BASE=/quassel # optional
volumes: volumes:
# this will store config on the docker host # this will store config on the docker host
- ${BASEDIR:-/volume1/docker}/quassel-web/config:/config - ${BASEDIR:-/volume1/docker}/quassel-web/config:/config
ports: ports:
# Quassel-web http webui
- 64080:64080 # optional
# Quassel-web https webui # Quassel-web https webui
- 64443:64443 - 64443:64443 # optional
restart: unless-stopped restart: unless-stopped

@ -9,10 +9,12 @@ docker run -d \
-e PUID=${PUID:-1024} `# for UserID` \ -e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \ -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).` \ -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 QUASSEL_CORE=192.168.1.10 `# specify the URL or IP address of your Quassel Core instance` \ -e QUASSEL_CORE=192.168.1.10 `# optional` `# specify the URL or IP address of your Quassel Core instance` \
-e QUASSEL_PORT=4242 `# specify the port of your Quassel Core instance` \ -e QUASSEL_PORT=4242 `# optional` `# specify the port of your Quassel Core instance` \
-e QUASSEL_HTTPS= `# optional` `# Set to `true` to have Quassel web serve over https on port 64443 instead of http on port 64080.` \
-e URL_BASE=/quassel `# optional` `# Specify a url-base in reverse proxy setups ie. `/quassel`` \ -e URL_BASE=/quassel `# optional` `# Specify a url-base in reverse proxy setups ie. `/quassel`` \
-p 64443:64443 `# Quassel-web https webui` \ -p 64080:64080 `# optional` `# Quassel-web http webui` \
-p 64443:64443 `# optional` `# Quassel-web https webui` \
-v ${BASEDIR:-/volume1/docker}/quassel-web/config:/config `# this will store config on the docker host` \ -v ${BASEDIR:-/volume1/docker}/quassel-web/config:/config `# this will store config on the docker host` \
--restart unless-stopped \ --restart unless-stopped \
ghcr.io/linuxserver/quassel-web ghcr.io/linuxserver/quassel-web

Loading…
Cancel
Save