Docker container for DFBnc
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Chris Smith d1a82fca3f Initial implementation před 8 roky
Dockerfile Initial implementation před 8 roky
README.md Initial implementation před 8 roky

README.md

DFBnc Dockerfile

This is a dockerised version of DFBnc.

Usage

Create a named volume to persist data:

docker volume create --name dfbnc-data

Pull the image for the desired version of DFBnc:

docker pull csmith/dfbnc:0.3

Start a container, exposing ports as needed:

docker run -d --name dfbnc \
              --restart always \
              -p 33263 \
              -v dfbnc-data:/var/lib/dfbnc \
              csmith/dfbnc:0.3

The container exposes these ports:

  • 33262 (unencrypted IRC connection)
  • 33263 (encrypted IRC connection)

To enable encrypted connections you will need to follow the instructions on the DFBnc wiki.