Merge pull request #2648 from robintown/compose-config

Make it possible to use the JWT service with a local homeserver
This commit is contained in:
Robin 2024-09-27 17:07:49 -04:00 committed by GitHub
commit 55548afa3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,12 +7,16 @@ services:
auth-service: auth-service:
image: ghcr.io/element-hq/lk-jwt-service:latest-ci image: ghcr.io/element-hq/lk-jwt-service:latest-ci
hostname: auth-server hostname: auth-server
ports: # Use host network in case the configured homeserver runs on localhost
- 8881:8080 network_mode: host
environment: environment:
- LK_JWT_PORT=8881
- LIVEKIT_URL=ws://localhost:7880 - LIVEKIT_URL=ws://localhost:7880
- LIVEKIT_KEY=devkey - LIVEKIT_KEY=devkey
- LIVEKIT_SECRET=secret - LIVEKIT_SECRET=secret
# If the configured homeserver runs on localhost, it'll probably be using
# a self-signed certificate
- LIVEKIT_INSECURE_SKIP_VERIFY_TLS=YES_I_KNOW_WHAT_I_AM_DOING
deploy: deploy:
restart_policy: restart_policy:
condition: on-failure condition: on-failure
@ -23,11 +27,15 @@ services:
image: livekit/livekit-server:latest image: livekit/livekit-server:latest
command: --dev --config /etc/livekit.yaml command: --dev --config /etc/livekit.yaml
restart: unless-stopped restart: unless-stopped
ports: # The SFU seems to work far more reliably when we let it share the host
- "7880:7880" # network rather than opening specific ports (but why?? we're not missing
- "7881:7881" # any…)
- "7882:7882" network_mode: host
- "50100-50200:50100-50200" # ports:
# - "7880:7880/tcp"
# - "7881:7881/tcp"
# - "7882:7882/tcp"
# - "50100-50200:50100-50200/upd"
volumes: volumes:
- ./backend/livekit.yaml:/etc/livekit.yaml - ./backend/livekit.yaml:/etc/livekit.yaml
networks: networks: