This commit is contained in:
2023-06-30 14:08:15 +01:00
commit bcaa32afb1
28 changed files with 1109 additions and 0 deletions

19
docker-compose.yaml Normal file
View File

@ -0,0 +1,19 @@
services:
srs:
image: ossrs/srs
volumes:
- "./docker/srs.conf:/usr/local/srs/conf/docker.conf"
ports:
- "1935:1935"
- "1985:1985"
- "8080:8080"
nostr:
image: scsibug/nostr-rs-relay
ports:
- "8081:8080"
postgres:
image: postgres:15
environment:
- "POSTGRES_HOST_AUTH_METHOD=trust"
ports:
- "5431:5432"