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.

26 lines
849 B
YAML

3 years ago
# [Znc](http://wiki.znc.in/ZNC) is an IRC network bouncer or BNC. It can detach
# the client from the actual IRC server, and also from selected channels.
# Multiple clients from different locations can connect to a single ZNC account
# simultaneously and therefore appear under the same nickname on IRC.
3 years ago
---
version: "2.1"
services:
znc:
image: ghcr.io/linuxserver/znc
container_name: znc
environment:
# for UserID
2 years ago
- PUID=${PUID:-1024}
# for GroupID
3 years ago
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
3 years ago
- TZ=${TZ:-Europe/Amsterdam}
3 years ago
volumes:
4 months ago
# Persistent config files
3 years ago
- ${BASEDIR:-/volume1/docker}/znc/config:/config
ports:
# Port ZNC listens on.
- 6501:6501
restart: unless-stopped