GitXplorerGitXplorer
m

docker-bitlbee

public
45 stars
25 forks
0 issues

Commits

List of commits on branch master.
Verified
5778e78c78fd79d0527f4281950f0a1c68fc6fd7

Fix: remove building from schedule

mmbologna committed a year ago
Unverified
30ffa91e72ec910bd0041143d05e490ea04a912e

Fix: compile Telegram plugin

mmbologna committed a year ago
Unverified
509f8f919410f8a0752ab9866884352fd06c5e5d

Chore: create GHA to build the image

mmbologna committed 2 years ago
Verified
ec4684a6738fffb532cdedf29d18d6b1049e1abb

Chore: version bump to 20230403

mmbologna committed 2 years ago
Verified
cd0cf6049b94bd679a2a79210060e62550222728

Feat: update to bitlbee-facebook 1.2.2

mmbologna committed 2 years ago
Unverified
30b5b2d9fd2152fe61bdcdcc87bb8691cab95a88

Docs: add new Telegram lib

mmbologna committed 3 years ago

README

The README file for this repository.

BitlBee with additional plugins in a container

Docker GitHub Workflow Status

This repository provides a Docker-based setup for running Bitlbee with additional plugins for extended functionality and an optional Stunnel service to enable secure IRC communications over TLS.

Features

Quick Start

Running Locally with Podman or Docker Compose

  1. Clone this repository:

    git clone https://github.com/mbologna/docker-bitlbee.git
    cd docker-bitlbee
    
  2. Build and run the containers:

    podman-compose up --build
    

    If you're using Docker:

    docker-compose up --build
    
  3. Access the Bitlbee service on port 6667 and the Stunnel service on port 16697.

Environment Variables

UID and GID: Set these to match your local user for proper volume permissions.

Persistent Data

The data/ directory is mounted as a volume to store Bitlbee configurations and data. Ensure it is backed up for persistent setups.

Kubernetes Deployment

Kubernetes manifests for deploying Bitlbee and Stunnel are located in the k8s/ directory.

  1. Apply the manifests:
kubectl apply -f k8s/

Verify deployment:

kubectl get pods -n bitlbee

Expose the service as needed (e.g., via NodePort or Ingress).

CI/CD Workflow

This repository uses GitHub Actions for automated builds and deployments:

  • Build and Push: Docker images are built for amd64 and arm64 platforms and pushed to:

    • Docker Hub: mbologna/docker-bitlbee:latest
    • GitHub Container Registry: ghcr.io/mbologna/docker-bitlbee:latest
  • Linting: Integrated linters for Dockerfile, shell scripts, and Kubernetes resources.

  • Security Scans: Uses Trivy to scan Docker images for vulnerabilities.

Local Development

Building Multi-Arch Images Locally

For multi-architecture builds with Podman:

podman build --platform linux/amd64,linux/arm64 -t mbologna/docker-bitlbee:latest .

Or with Docker:

docker buildx build --platform linux/amd64,linux/arm64 -t mbologna/docker-bitlbee:latest --push .

Resources

BitlBee Documentation