Direkt zum Hauptinhalt

Docker installation

Beschreibung:

Installation via Docker und Lets encyrpt.
Das Image hat den certbot schon drin, so das wir keinen Certbot Conatiner brauchen.

Installtion

mkdir /root/jitsi

.env Datei

nano /root/jitsi/.env

Inhalt

# Jitsi Konfigurationen
JITSI_DOMAIN=jitsi.example.com
# E-Mail für Lets Encrypt
LETSENCRYPT_EMAIL=your-email@example.com

Composer Datei

nano /root/jitsi/docker-compose.yml

Inhalt

version: '3.2'

services:
  # Jitsi Web Service
  web:
    image: jitsi/web
    environment:
      - ENABLE_LETSENCRYPT=1
      - LETSENCRYPT_DOMAIN=${JITSI_DOMAIN}
      - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
      - ENABLE_AUTH=1
      - ENABLE_GUESTS=1
    volumes:
      - ./web:/config:Z
      - /etc/letsencrypt:/etc/letsencrypt:Z
    ports:
      - '80:80'
      - '443:443'
    depends_on:
      - prosody
      - jicofo
      - jvb

  # Jitsi Videobridge
  jvb:
    image: jitsi/jvb
    environment:
      - JITSI_DOMAIN=${JITSI_DOMAIN}
    volumes:
      - ./jvb:/config:Z
    depends_on:
      - prosody

  # Jitsi Focus Component
  jicofo:
    image: jitsi/jicofo
    volumes:
      - ./jicofo:/config:Z
    depends_on:
      - prosody

  # Prosody XMPP Server
  prosody:
    image: jitsi/prosody
    environment:
      - ENABLE_AUTH=1
      - AUTH_TYPE=internal_plain
      - JITSI_DOMAIN=${JITSI_DOMAIN}
    volumes:
      - ./prosody:/config:Z

Container Starten ohne d um Fehler zu sehen

docker-compose up

Benutzer anlegen