Skip to repository content24 lines · 573 B · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-27T22:38:37.343Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
compose.yml
1services:
2 blob_store:
3 image: quay.io/minio/minio
4 container_name: blob_store
5 command: server /data
6 ports:
7 - 9000:9000
8 environment:
9 MINIO_ROOT_USER: the-blob-store-access-key
10 MINIO_ROOT_PASSWORD: the-blob-store-secret-key
11 volumes:
12 - ./.blob_store:/data
13
14 livekit_server:
15 image: docker.io/livekit/livekit-server
16 container_name: livekit_server
17 entrypoint: /livekit-server --config /livekit.yaml
18 ports:
19 - 7880:7880
20 - 7881:7881
21 - 7882:7882/udp
22 volumes:
23 - ./livekit.yaml:/livekit.yaml
24