You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Ricardo Arturo Cabral Mejia 3bb1ffaab4
docs: add docker commands to readme
3 years ago
nginx/conf.d chore: add nginx config 3 years ago
.dockerignore feat: add Dockerfile 3 years ago
.gitignore chore: output to dist folder 3 years ago
.prettierrc.yaml first version, reviving @rsbondi's work. 3 years ago
Dockerfile feat: add Dockerfile 3 years ago
README docs: add docker commands to readme 3 years ago
index.html improve "add your relay" line. 3 years ago
main.js Fixed subscription filter to use "ids" pluragl 3 years ago
package.json chore: install html-webpack-plugin 3 years ago
webpack.config.js chore: output to dist folder 3 years ago

README

# nostr-relay-registry

A dynamic registry of nostr relays that tests for very basic tasks in real-time.

## Docker

Build the docker image:

```bash
docker build -t nostr-relay-registry .
```

Run the container interactively:

```bash
docker run --rm -it --name=nostr-relay-registry -p 8080:80 nostr-relay-registry
```

Run container in the background:

```bash
docker run -d --restart unless-stopped --name nostr-relay-registry -p 8080:80 nostr-relay-registry
```