Skip to content

Commit 88d5ca3

Browse files
committed
release: stable-7577
* b670959 prosody: simplify container build * e05a9c2 fixup: template syntax for newly added variables (#1355) * 164d28b web: migrate deprecated recordings options, add some more * f126f7a web: set config.videoQuality.maxBitratesVideo to null if no bitrates are specified * 0364d94 jibri: remove deprecated PulseAudio module * 1c93e1b web: add support for brandingDataUrl (#1346) * 4372717 web: add support for wav files to nginx default * d804ba4 misc: make ignore rule more generic * b224131 prosody: use ENABLE_IPV6 environment variable * be8c41f etherpad,jigasi: fix compose file version * d7cee00 misc: working on unstable
1 parent b670959 commit 88d5ca3

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## stable-7577
2+
3+
Based on stable release 7577.
4+
5+
* b670959 prosody: simplify container build
6+
* e05a9c2 fixup: template syntax for newly added variables (#1355)
7+
* 164d28b web: migrate deprecated recordings options, add some more
8+
* f126f7a web: set config.videoQuality.maxBitratesVideo to null if no bitrates are specified
9+
* 0364d94 jibri: remove deprecated PulseAudio module
10+
* 1c93e1b web: add support for brandingDataUrl (#1346)
11+
* 4372717 web: add support for wav files to nginx default
12+
* d804ba4 misc: make ignore rule more generic
13+
* b224131 prosody: use ENABLE_IPV6 environment variable
14+
* be8c41f etherpad,jigasi: fix compose file version
15+
* d7cee00 misc: working on unstable
16+
117
## stable-7439-2
218

319
Based on stable release 7439-2.

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.5'
33
services:
44
# Frontend
55
web:
6-
image: jitsi/web:${JITSI_IMAGE_VERSION:-unstable}
6+
image: jitsi/web:${JITSI_IMAGE_VERSION:-stable-7577}
77
restart: ${RESTART_POLICY:-unless-stopped}
88
ports:
99
- '${HTTP_PORT}:80'
@@ -147,7 +147,7 @@ services:
147147

148148
# XMPP server
149149
prosody:
150-
image: jitsi/prosody:${JITSI_IMAGE_VERSION:-unstable}
150+
image: jitsi/prosody:${JITSI_IMAGE_VERSION:-stable-7577}
151151
restart: ${RESTART_POLICY:-unless-stopped}
152152
expose:
153153
- '${XMPP_PORT:-5222}'
@@ -234,7 +234,7 @@ services:
234234

235235
# Focus component
236236
jicofo:
237-
image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-unstable}
237+
image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-stable-7577}
238238
restart: ${RESTART_POLICY:-unless-stopped}
239239
volumes:
240240
- ${CONFIG}/jicofo:/config:Z
@@ -284,7 +284,7 @@ services:
284284

285285
# Video bridge
286286
jvb:
287-
image: jitsi/jvb:${JITSI_IMAGE_VERSION:-unstable}
287+
image: jitsi/jvb:${JITSI_IMAGE_VERSION:-stable-7577}
288288
restart: ${RESTART_POLICY:-unless-stopped}
289289
ports:
290290
- '${JVB_PORT:-10000}:${JVB_PORT:-10000}/udp'

jibri.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.5'
22

33
services:
44
jibri:
5-
image: jitsi/jibri:${JITSI_IMAGE_VERSION:-unstable}
5+
image: jitsi/jibri:${JITSI_IMAGE_VERSION:-stable-7577}
66
restart: ${RESTART_POLICY:-unless-stopped}
77
volumes:
88
- ${CONFIG}/jibri:/config:Z

jigasi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.5'
33
services:
44
# SIP gateway (audio)
55
jigasi:
6-
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-unstable}
6+
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-7577}
77
restart: ${RESTART_POLICY:-unless-stopped}
88
ports:
99
- '${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}:${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}/udp'

0 commit comments

Comments
 (0)