meet/prod.yaml
2025-01-16 11:36:54 -08:00

34 lines
562 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: