mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
28 lines
954 B
YAML
28 lines
954 B
YAML
# [Ngircd](https://ngircd.barton.de/) is a free, portable and lightweight
|
|
# Internet Relay Chat server for small or private networks, developed under the
|
|
# GNU General Public License (GPL). It is easy to configure, can cope with
|
|
# dynamic IP addresses, and supports IPv6, SSL-protected connections as well as
|
|
# PAM for authentication. It is written from scratch and not based on the
|
|
# original IRCd.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
ngircd:
|
|
image: ghcr.io/linuxserver/ngircd
|
|
container_name: ngircd
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Where `ngircd.conf` is stored
|
|
- ${BASEDIR:-/volume1/docker}/ngircd/config:/config
|
|
ports:
|
|
# ngircd port
|
|
- 6667:6667
|
|
restart: unless-stopped
|