docker-bits/lsio/ngircd/docker-compose.yaml

28 lines
898 B
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [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.
2021-04-10 10:16:29 +00:00
---
version: "2.1"
services:
ngircd:
image: ghcr.io/linuxserver/ngircd
container_name: ngircd
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
volumes:
# Where `ngircd.conf` is stored
- ${BASEDIR:-/volume1/docker}/ngircd/config:/config
ports:
# ngircd port
- 6667:6667
restart: unless-stopped