-
Notifications
You must be signed in to change notification settings - Fork 1
/
CONTRIBUTING
43 lines (34 loc) · 1.17 KB
/
CONTRIBUTING
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Upgrading jitsi version
=======================
Upgrading containerized server
------------------------------
* clone repository https://github.com/jitsi/docker-jitsi-meet.git and checkout corresponding tag. Compare env.example to file in templates folder.
* update version number in `data/common.yaml`:
```
jitsi::containerized_server::version: 'stable-5870'
```
* on a target host deploy instance
* check for backup of web config, compare to your version in templates
### Find out which variables can be set
Check out git repository `https://github.com/jitsi/docker-jitsi-meet`.
Convert `docker-compose.yaml` to json and parse all environment variables:
~~~
ENV_VARIABLES=$(cat docker-compose.yml.json | jq .services[].environment[] -r | sort -u)
~~~
Verify which variable is not yet included in `templates/env.erb`
~~~
cd /path/to/jitsi-module
for i in ${ENV_VARIABLES}
do
if ! grep -q $i templates/env.erb
then
echo $i
fi
done
~~~
Upgrade AppImage client
-----------------------
* update version in `data/common.yaml`
* determine hash for AppImage:
* retrieve from github releases latest-linux.yaml
* read hassum end decode it using `| base64 -d | xxd -p`