mirror of
https://github.com/element-hq/element-docker-demo.git
synced 2026-01-24 22:26:13 +03:00
10 lines
257 B
Bash
Executable File
10 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# launch lk-jwt-service with secrets from disk
|
|
|
|
export LK_JWT_PORT=8080
|
|
export LIVEKIT_URL=wss://${LIVEKIT_FQDN}
|
|
export LIVEKIT_KEY=$(</run/secrets/livekit_api_key)
|
|
export LIVEKIT_SECRET=$(</run/secrets/livekit_secret_key)
|
|
|
|
exec /lk-jwt-service |