GitXplorerGitXplorer
m

docker-bitlbee

public
45 stars
25 forks
0 issues

Commits

List of commits on branch master.
Verified
c420132bd7eeb396ffcebf8a29e42712c7872971

Merge pull request #15 from aruhier/master

mmbologna committed a month ago
Verified
013e57ba9485311fd71bd5a11f51bd85e3b12949

Uses ForkDaemon instead of Daemon mode.

aaruhier committed a month ago
Unverified
9ca47ce62acc13e2d363158c420fe7e1f727ad71

Fix: typo

mmbologna committed 2 months ago
Unverified
b52e5d6523828511b2281c6b0951c1a74c5c15f5

Fix: entrypoint.sh permissions

mmbologna committed 2 months ago
Unverified
afac4af31f4d68b288037766bbf59f5c6d307cbb

Refactor: add/remove services, general refactoring

mmbologna committed 2 months ago
Unverified
8eecc2bb3fd7ed63aa9a3a76dbe4e934699b2d8c

Chore: clarify we fetch images from docker.io lib

mmbologna committed 9 months 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