Skip to content

Commit

Permalink
🚀 feat(docker): update relay image to version 1.0.3 in docker-compose…
Browse files Browse the repository at this point in the history
… files

📜 docs(readme): add git pull command to README for relay restart instructions
🎉 feat(env): add BLOSSOM_PATH and update OUTBOX_RELAY_DESCRIPTION in .env.example
  • Loading branch information
fsociety committed Dec 23, 2024
1 parent 9e970e6 commit 1fb7099
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ RELAY_URL="relay.utxo.one"
RELAY_PORT=3355
RELAY_BIND_ADDRESS="0.0.0.0" # Can be set to a specific IP4 or IP6 address ("" for all interfaces)
DB_ENGINE="badger" # badger, lmdb (lmdb works best with an nvme, otherwise you might have stability issues)
BLOSSOM_PATH="blossom/"

## Private Relay Settings
PRIVATE_RELAY_NAME="utxo's private relay"
Expand Down Expand Up @@ -42,7 +43,7 @@ CHAT_RELAY_CONNECTION_RATE_LIMITER_MAX_TOKENS=9
## Outbox Relay Settings
OUTBOX_RELAY_NAME="utxo's outbox relay"
OUTBOX_RELAY_NPUB="npub1utx00neqgqln72j22kej3ux7803c2k986henvvha4thuwfkper4s7r50e8"
OUTBOX_RELAY_DESCRIPTION="a relay for public messages"
OUTBOX_RELAY_DESCRIPTION="a relay and Blossom server for public messages and media"
OUTBOX_RELAY_ICON="https://i.nostr.build/6G6wW.gif"

## Outbox Relay Rate Limiters
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ If you want to use the latest version on the master branch, execute:

```bash
git checkout master
git pull
```

Then, restart the relay:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.tor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
relay:
container_name: haven-relay
image: holgerhatgarkeinenode/haven-docker:v1.0.0
image: holgerhatgarkeinenode/haven-docker:v1.0.3
env_file:
- .env
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
relay:
container_name: haven-relay
image: holgerhatgarkeinenode/haven-docker:v1.0.0
image: holgerhatgarkeinenode/haven-docker:v1.0.3
env_file:
- .env
volumes:
Expand Down

0 comments on commit 1fb7099

Please sign in to comment.