2021-04-21 00:55:42 +00:00
|
|
|
# [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/)
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
quassel-web:
|
|
|
|
image: ghcr.io/linuxserver/quassel-web
|
|
|
|
container_name: quassel-web
|
|
|
|
environment:
|
|
|
|
# for UserID
|
2022-04-02 00:45:58 +00:00
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for GroupID
|
2021-04-10 10:16:29 +00:00
|
|
|
- PGID=${PGID:-100}
|
2023-02-12 01:01:09 +00:00
|
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
2023-02-26 14:51:38 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
# specify the URL or IP address of your Quassel Core instance
|
2023-11-18 00:36:07 +00:00
|
|
|
- QUASSEL_CORE=192.168.1.10 # optional
|
2021-04-10 10:16:29 +00:00
|
|
|
# specify the port of your Quassel Core instance
|
2023-11-18 00:36:07 +00:00
|
|
|
- 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
|
2021-04-10 10:16:29 +00:00
|
|
|
# Specify a url-base in reverse proxy setups ie. `/quassel`
|
|
|
|
- URL_BASE=/quassel # optional
|
|
|
|
volumes:
|
|
|
|
# this will store config on the docker host
|
|
|
|
- ${BASEDIR:-/volume1/docker}/quassel-web/config:/config
|
|
|
|
ports:
|
2023-11-18 00:36:07 +00:00
|
|
|
# Quassel-web http webui
|
|
|
|
- 64080:64080 # optional
|
2022-02-16 00:38:04 +00:00
|
|
|
# Quassel-web https webui
|
2023-11-18 00:36:07 +00:00
|
|
|
- 64443:64443 # optional
|
2021-04-10 10:16:29 +00:00
|
|
|
restart: unless-stopped
|