meet/prod.yaml
2025-03-17 21:18:15 +05:30

27 lines
553 B
YAML

services:
caddy:
image: caddy:2.8.4-alpine
restart: unless-stopped
container_name: caddy.sphinx
command: caddy reverse-proxy --from https://$DOMAIN:443 --to http://livekit.sphinx:3000
ports:
- 80:80
- 443:443
volumes:
- caddy:/data
depends_on:
- livekit
livekit:
image: sphinxlightning/sphinx-livekit:latest
restart: on-failure
command: ['node', 'server.js']
container_name: livekit.sphinx
environment:
- HOSTNAME=0.0.0.0
ports:
- 3000:3000
volumes:
caddy: