Skip to content

Commit 140c5f2

Browse files
committed
release: stable-5765
* 9bc262a prosody: fix building unstable images * 0cbe0d9 web: add a env variable to enable/disable deep linking * b22421b misc: publish nightly unstable images * 78699fe web: allow to configure shard name using env variable * a6853ef jvb: add octo configuration options * d6fac8e jicofo: disable octo by default * 1fa5048 doc: add link to Kubernetes setup * e1cebcc web,jvb: add ability to disable web sockets for colibri * 6c4dce1 jicofo: fix ENABLE_SCTP type * 953a4d2 jicofo: use a client proxy connection * d27336b web: always try to renew cert on container boot * 73acbad web: remove deprecated config option * cb4d941 web: removed duplicate host headers * ec570ba k8s: fix PodSecurityPolicy * c4fc3d3 web: make a custom interface config possible * b45b505 web: always install acme.sh when container starts * 94ca16d etherpad: remove quotes from all env vars * c89ccc9 jicofo: reintroduce shibboleth auth * a6486b4 examples: update traefik v2 example * f4ec023 misc: working on latest
1 parent 9bc262a commit 140c5f2

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## stable-5765
2+
3+
Based on stable release 5765.
4+
5+
* 9bc262a prosody: fix building unstable images
6+
* 0cbe0d9 web: add a env variable to enable/disable deep linking
7+
* b22421b misc: publish nightly unstable images
8+
* 78699fe web: allow to configure shard name using env variable
9+
* a6853ef jvb: add octo configuration options
10+
* d6fac8e jicofo: disable octo by default
11+
* 1fa5048 doc: add link to Kubernetes setup
12+
* e1cebcc web,jvb: add ability to disable web sockets for colibri
13+
* 6c4dce1 jicofo: fix ENABLE_SCTP type
14+
* 953a4d2 jicofo: use a client proxy connection
15+
* d27336b web: always try to renew cert on container boot
16+
* 73acbad web: remove deprecated config option
17+
* cb4d941 web: removed duplicate host headers
18+
* ec570ba k8s: fix PodSecurityPolicy
19+
* c4fc3d3 web: make a custom interface config possible
20+
* b45b505 web: always install acme.sh when container starts
21+
* 94ca16d etherpad: remove quotes from all env vars
22+
* c89ccc9 jicofo: reintroduce shibboleth auth
23+
* a6486b4 examples: update traefik v2 example
24+
* f4ec023 misc: working on latest
25+
126
## stable-5390-3
227

328
Based on stable release 5390-3.

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# Frontend
55
web:
6-
image: jitsi/web:latest
6+
image: jitsi/web:stable-5765
77
restart: ${RESTART_POLICY}
88
ports:
99
- '${HTTP_PORT}:80'
@@ -108,7 +108,7 @@ services:
108108

109109
# XMPP server
110110
prosody:
111-
image: jitsi/prosody:latest
111+
image: jitsi/prosody:stable-5765
112112
restart: ${RESTART_POLICY}
113113
expose:
114114
- '5222'
@@ -177,7 +177,7 @@ services:
177177

178178
# Focus component
179179
jicofo:
180-
image: jitsi/jicofo:latest
180+
image: jitsi/jicofo:stable-5765
181181
restart: ${RESTART_POLICY}
182182
volumes:
183183
- ${CONFIG}/jicofo:/config:Z
@@ -223,7 +223,7 @@ services:
223223

224224
# Video bridge
225225
jvb:
226-
image: jitsi/jvb:latest
226+
image: jitsi/jvb:stable-5765
227227
restart: ${RESTART_POLICY}
228228
ports:
229229
- '${JVB_PORT}:${JVB_PORT}/udp'

jibri.yml

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

33
services:
44
jibri:
5-
image: jitsi/jibri:latest
5+
image: jitsi/jibri:stable-5765
66
restart: ${RESTART_POLICY}
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'
33
services:
44
# SIP gateway (audio)
55
jigasi:
6-
image: jitsi/jigasi:latest
6+
image: jitsi/jigasi:stable-5765
77
restart: ${RESTART_POLICY}
88
ports:
99
- '${JIGASI_PORT_MIN}-${JIGASI_PORT_MAX}:${JIGASI_PORT_MIN}-${JIGASI_PORT_MAX}/udp'

0 commit comments

Comments
 (0)