Skip to content

Commit

Permalink
jitsi-component-selector, docs: pull and run from registry
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Feb 29, 2024
1 parent e92d3fb commit a0a47d8
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion jitsi-component-selector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## Run

Assumed that the host IP is `172.17.17.1`.
- This service needs `Redis` and `ASAP key server`.
- Assumed that the host IP is `172.17.17.1`.

Run the following in this folder but in a different shell to simulate ASAP key
server.
Expand All @@ -14,6 +15,20 @@ python3 -m http.server -d ../files/asap 8000
```bash
docker run -d -p 6379:6379 redis

docker pull ghcr.io/jitsi-contrib/docker-images/jitsi-component-selector:latest

docker run \
-p 8015:8015 \
-e REDIS_HOST=172.17.17.1 \
-e PROTECTED_SIGNAL_API=true \
-e SYSTEM_ASAP_BASE_URL_MAPPINGS='[{"kid": "^jitsi/(.*)$", "baseUrl": "http://172.17.17.1:8000/server"}]' \
-e SIGNAL_ASAP_BASE_URL_MAPPINGS='[{"kid": "^jitsi/(.*)$", "baseUrl": "http://172.17.17.1:8000/signal"}]' \
ghcr.io/jitsi-contrib/docker-images/jitsi-component-selector
```

## Build and Run

```bash
docker image build -t jitsi-component-selector .

docker run \
Expand Down

0 comments on commit a0a47d8

Please sign in to comment.