mirror of
https://github.com/supabase/supabase.git
synced 2026-09-08 10:59:38 +08:00
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
services:
|
|
|
|
# Caddy terminates TLS and forwards to the API gateway (api-gw) on port 8000,
|
|
# so the gateway's own host port binding is removed here. This works for
|
|
# either gateway, since the service is named api-gw in both cases.
|
|
api-gw:
|
|
ports: !reset []
|
|
# When using the Kong override uncomment the following:
|
|
#environment:
|
|
# KONG_PORT_MAPS: "443:8000,443:8443"
|
|
|
|
caddy:
|
|
container_name: supabase-caddy
|
|
image: caddy:2
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "443:443/udp"
|
|
depends_on:
|
|
api-gw:
|
|
condition: service_healthy
|
|
studio:
|
|
condition: service_healthy
|
|
environment:
|
|
PROXY_DOMAIN: ${PROXY_DOMAIN}
|
|
PROXY_AUTH_USERNAME: ${DASHBOARD_USERNAME}
|
|
PROXY_AUTH_PASSWORD: ${DASHBOARD_PASSWORD}
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- |
|
|
PROXY_AUTH_PASSWORD=$$(caddy hash-password --plaintext "$$PROXY_AUTH_PASSWORD") && \
|
|
caddy run --config /etc/caddy/Caddyfile --adapter caddyfile
|
|
volumes:
|
|
- ./volumes/proxy/caddy:/etc/caddy
|
|
- caddy_data:/data
|
|
- caddy_config:/config
|
|
|
|
volumes:
|
|
caddy_data:
|
|
caddy_config:
|