89e052db1a
- Add docker-compose as well as instructions to run it locally with exposed ports 8080 & 8443 (with required nginx.conf additions) - Add helm chart; it's pretty default and contains one template extension: we should be able to mount public/config.json from values.yaml (untested)
23 lines
546 B
YAML
23 lines
546 B
YAML
# LiveKit requires host networking, which is only available on Linux
|
|
# This compose will not function correctly on Mac or Windows
|
|
version: "3.9"
|
|
|
|
networks:
|
|
lkbackend:
|
|
|
|
services:
|
|
call:
|
|
build:
|
|
context: ./
|
|
container_name: element-call-backend
|
|
ports:
|
|
- 8080:8080
|
|
- 8443:8443
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
networks:
|
|
- lkbackend
|
|
volumes:
|
|
- ./certs/element-call.crt:/etc/ssl/certs/element-call.crt
|
|
- ./certs/element-call.key:/etc/ssl/private/element-call.key
|