You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
1.1 KiB
Bash

4 years ago
# Quassel-core 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.
source ./.env
docker run -d \
--name=quassel-core \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
4 years ago
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
4 years ago
-e RUN_OPTS=--config-from-environment `# optional` `# Custom CLI options for Quassel` \
-p 4242:4242 `# The port quassel-core listens for connections on.` \
-p 113:10113 `# optional` `# Optional Ident Port` \
-v ${BASEDIR:-/volume1/docker}/quassel-core/config:/config `# Database and quassel-core configuration storage.` \
--restart unless-stopped \
ghcr.io/linuxserver/quassel-core