17 lines
436 B
YAML
17 lines
436 B
YAML
version: "3"
|
|
services:
|
|
nnostr-relay:
|
|
restart: unless-stopped
|
|
image: kukks/nnostr-relay:v0.0.10
|
|
container_name: nnostr-relay
|
|
environment:
|
|
NOSTR_CONNECTIONSTRINGS__RelayDatabase: User ID=postgres;Host=postgres;Port=5432;Database=nnostr
|
|
ASPNETCORE_URLS: "http://0.0.0.0:80"
|
|
links:
|
|
- postgres
|
|
- btcpayserver
|
|
|
|
btcpayserver:
|
|
environment:
|
|
BTCPAY_EXTERNALSERVICES: "Nostr Relay:nostr;"
|