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

๐Ÿ Fully-loaded BitlBee Docker Container ๐Ÿณ

Notifications You must be signed in to change notification settings

tiuxo/bitlbee-docker

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

86 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

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