From 44e1c6e2c5148c7d274fe3e0081b3bf3c3b82913 Mon Sep 17 00:00:00 2001 From: Jan Beilicke Date: Wed, 1 Apr 2020 12:59:48 +0200 Subject: [PATCH] Jitsi containers should be restarted unless stopped --- templates/docker-compose.jitsi.yml.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/docker-compose.jitsi.yml.j2 b/templates/docker-compose.jitsi.yml.j2 index 1b69924..dae8cfa 100644 --- a/templates/docker-compose.jitsi.yml.j2 +++ b/templates/docker-compose.jitsi.yml.j2 @@ -4,6 +4,7 @@ services: # Frontend web: image: jitsi/web + restart: unless-stopped ports: - '${HTTP_PORT}:80' - '${HTTPS_PORT}:443' @@ -53,6 +54,7 @@ services: # XMPP server prosody: image: jitsi/prosody + restart: unless-stopped expose: - '5222' - '5347' @@ -116,6 +118,7 @@ services: # Focus component jicofo: image: jitsi/jicofo + restart: unless-stopped volumes: - ${CONFIG}/jicofo:/config environment: @@ -141,6 +144,7 @@ services: # Video bridge jvb: image: jitsi/jvb + restart: unless-stopped ports: - '${JVB_PORT}:${JVB_PORT}/udp' - '${JVB_TCP_PORT}:${JVB_TCP_PORT}'