Skip to content
This repository has been archived by the owner on Mar 23, 2020. It is now read-only.

Latest commit

 

History

History
61 lines (54 loc) · 2.44 KB

README.md

File metadata and controls

61 lines (54 loc) · 2.44 KB

BitlBee, fully loaded.

Travis CI status badge Docker Pulls Docker Stars Size

BitlBee, with LDAP, OTR, Purple, and support for:

Naver LINE is commented out in the Dockerfile because Naver now bans accounts using 3rd-party clients. Uncomment it at your own risk.

Typical Usage

For configuration persistance, /opt/dockerdata/bitlbee should be present on the host with sufficient permissions.

Using Docker CLI
docker run -d --name bitlbee --restart=always \
-v /opt/dockerdata/bitlbee:/bitlbee-data:rw \
-v /etc/localtime:/etc/localtime:ro \
-p 6667:6667 \
bclemens/bitlbee

Using a custom bitlbee.conf:

docker run -d --name bitlbee --restart=always \
-v /opt/dockerdata/bitlbee:/bitlbee-data:rw \
-v /opt/dockerdata/bitlbee.conf:/bitlbee.conf:ro \
-v /etc/localtime:/etc/localtime:ro \
-p 6667:6667 \
bclemens/bitlbee
Using Docker Compose
docker-compose up -d