Docker container behind znc.jerryaldrichiii.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Jerry Aldrich c95d8981eb Add debug toggle 3 years ago
.gitignore Initial commit 3 years ago
Dockerfile Pin version of ZNC to 1.8.2 3 years ago
README.md Add debug toggle 3 years ago
entrypoint.sh Add debug toggle 3 years ago
znc.conf.example Add debug toggle 3 years ago

README.md

ZNC

Usage

Prerequisites:

  • Copy znc.conf.example to znc.conf and modify relevant lines
  • Generate a password (see znc.conf.example)
  • (optional) Generate SSL certificates (see Dockerfile for openssl command)

Using self signed SSL certificates

docker run --rm -it \
  -v ${PWD}/znc.conf:/bootstrap/configs/znc.conf \
  -p 6667:6667 \
  -p 8000:8000 \
  jerryaldrichiii/znc

Using your SSL certificates

docker run --rm -it \
  -v ${PWD}/znc.conf:/bootstrap/configs/znc.conf \
  -v ${PWD}/znc.crt:/bootstrap/tls/znc.crt \
  -v ${PWD}:/bootstrap/tls/znc.key \
  -p 6667:6667 \
  -p 8000:8000 \
  jerryaldrichiii/znc

Enabling debug mode

-e ZNC_DEBUG=true