Skip to content

nostr-rs-relay

Running it


git clone https://github.com/scsibug/nostr-rs-relay.git
cd nostr-rs-relay
docker build -t nostr-rs-relay .
mkdir data
touch index.html

sudo docker run -it -p 7000:8080 \
  --mount src=$(pwd)/config.toml,target=/usr/src/app/config.toml,type=bind \
  --mount src=$(pwd)/data,target=/usr/src/app/db,type=bind \
  --mount src=$(pwd)/index.html,target=/usr/src/app/index.html,type=bind \
  nostr-rs-relay