mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
07501d9cfa
This PR adds the LiveKit server to the Docker Compose setup. All of the dependencies needed to run the collab server are now encapsulated within Docker Compose. Release Notes: - N/A
40 lines
886 B
YAML
40 lines
886 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:15
|
|
container_name: zed_postgres
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
- ./docker-compose.sql:/docker-entrypoint-initdb.d/init.sql
|
|
|
|
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: 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
|
|
|
|
volumes:
|
|
postgres_data:
|