mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-23 12:37:09 +00:00
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
23 lines
573 B
YAML
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
|