Sign inSign up

drmaxnix/jitfree

By drmaxnix

Updated about 4 hours ago

A less bodgy way of changing restricted config options in Jitsi

Image
Integration & delivery
0

2.9K

drmaxnix/jitfree repository overview

Source Code: git.tjdev.de/DrMaxNix/jitfree

JitFree

A less bodgy way of changing restricted config options in Jitsi

Setup Instructions

Add this to docker-compose.override.yml:

services:
  jitfree:
    image: drmaxnix/jitfree:1
    restart: unless-stopped
    volumes:
      - ${CONFIG}/web:/config:Z
    env_file: ".env"
    cap_add:
      - LINUX_IMMUTABLE
    networks:
      meet.jitsi:
    depends_on:
      - web
$ docker compose up -d

Note

The `LINUX_IMMUTABLE` capability is required to activate the immutable flag on the jitsi config file after it has been modified by JitFree. This is necessary to protect it from being overwritten by Jitsi (see DrMaxNix/jitfree#1).

Example Usage

Now you can add lines like these to .env:

#
# JitFree
#

# Remove 'Jitsi' watermark
# Note that all of JitFree's options are prefixed with `JITFREE_`!
JITFREE_SHOW_JITSI_WATERMARK=false

# Override the default 'Jitsi Meet' app name
# Note that you are in charge of formatting the values as proper javascript!
JITFREE_APP_NAME="'My \'Awesome\' Custom App Name'"

Tag summary

Content type

Image

Digest

sha256:8089d13cd

Size

4.5 MB

Last updated

about 4 hours ago

docker pull drmaxnix/jitfree