mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
21 lines
1.2 KiB
Bash
21 lines
1.2 KiB
Bash
# [Quassel-web](https://github.com/magne4000/quassel-webserver) is a web client
|
|
# for Quassel. Note that a Quassel-Core instance is required, we have a
|
|
# container available [here.](https://hub.docker.com/r/linuxserver/quassel-
|
|
# core/)
|
|
|
|
. ./.env
|
|
docker run -d \
|
|
--name=quassel-web \
|
|
-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).` \
|
|
-e QUASSEL_CORE=192.168.1.10 `# optional` `# specify the URL or IP address 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`` \
|
|
-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` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/quassel-web
|