29 lines
614 B
YAML
29 lines
614 B
YAML
services:
|
|
srs-origin:
|
|
image: ossrs/srs:5
|
|
volumes:
|
|
- "./docker/srs-origin.conf:/usr/local/srs/conf/srs.conf"
|
|
ports:
|
|
- "9001:1935"
|
|
- "9002:1985"
|
|
- "9003:8080"
|
|
- "9004:8000"
|
|
srs-edge:
|
|
image: ossrs/srs:5
|
|
volumes:
|
|
- "./docker/srs-edge.conf:/usr/local/srs/conf/srs.conf"
|
|
ports:
|
|
- "9005:1935"
|
|
- "9006:1985"
|
|
- "9007:8080"
|
|
- "9008:8000"
|
|
nostr:
|
|
image: scsibug/nostr-rs-relay
|
|
ports:
|
|
- "8081:8080"
|
|
postgres:
|
|
image: postgres:15
|
|
environment:
|
|
- "POSTGRES_HOST_AUTH_METHOD=trust"
|
|
ports:
|
|
- "5431:5432" |