zed/compose.yml
Marshall Bowers 5b08f4ccac
Remove Postgres and stripe-mock from Docker Compose (#48313)
This PR removes the Postgres and `stripe-mock` contains from the Docker
Compose cluster, as these now run in Cloud's Docker Compose cluster.

Release Notes:

- N/A
2026-02-04 03:42:58 +00:00

23 lines
573 B
YAML

services:
blob_store:
image: quay.io/minio/minio
container_name: blob_store
command: server /data
ports:
- 9000:9000
environment:
MINIO_ROOT_USER: the-blob-store-access-key
MINIO_ROOT_PASSWORD: the-blob-store-secret-key
volumes:
- ./.blob_store:/data
livekit_server:
image: docker.io/livekit/livekit-server
container_name: livekit_server
entrypoint: /livekit-server --config /livekit.yaml
ports:
- 7880:7880
- 7881:7881
- 7882:7882/udp
volumes:
- ./livekit.yaml:/livekit.yaml