Docker container for DFBnc
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Chris Smith d1a82fca3f Initial implementation 8 роки тому
Dockerfile Initial implementation 8 роки тому
README.md Initial implementation 8 роки тому

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.