Docker container for DFBnc
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Chris Smith db5399aa3e Deprecate 7年前
Dockerfile Update to 0.4 7年前
README.md Deprecate 7年前

README.md

DEPRECATED

DFBnc now provides docker images itself.

Use the shanemcc/dfbnc image from Docker Hub for updates.

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.4

Start a container, exposing ports as needed:

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

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.