2021-04-21 00:55:42 +00:00
|
|
|
# [Quassel-core](http://quassel-irc.org/) is a modern, cross-platform,
|
|
|
|
# distributed IRC client, meaning that one (or multiple) client(s) can attach to
|
|
|
|
# and detach from a central core. This container handles the IRC connection
|
|
|
|
# (quasselcore) and requires a desktop client (quasselclient) to be used and
|
|
|
|
# configured. It is designed to be always on and will keep your identity present
|
|
|
|
# in IRC even when your clients cannot be online. Backlog (history) is
|
|
|
|
# downloaded by your client upon reconnection allowing infinite scrollback
|
|
|
|
# through time.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
quassel-core:
|
|
|
|
image: ghcr.io/linuxserver/quassel-core
|
|
|
|
container_name: quassel-core
|
|
|
|
environment:
|
|
|
|
# for GroupID
|
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for UserID
|
|
|
|
- PGID=${PGID:-100}
|
|
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
# Custom CLI options for Quassel
|
|
|
|
- RUN_OPTS=--config-from-environment # optional
|
|
|
|
volumes:
|
|
|
|
# Database and quassel-core configuration storage.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/quassel-core/config:/config
|
|
|
|
ports:
|
|
|
|
# The port quassel-core listens for connections on.
|
|
|
|
- 4242:4242
|
|
|
|
# Optional Ident Port
|
|
|
|
- 113:10113 # optional
|
|
|
|
restart: unless-stopped
|