meet/prod.yaml
Evan Feenstra c69c43b7b6 use img
2025-01-16 11:35:02 -08:00

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