Skip to content

Commit

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

📚 chore(readme): remove outdated section on fetching release tags

🔧 fix(env): update backup settings and add new import settings in .env.example
  • Loading branch information
fsociety committed Feb 9, 2025
1 parent 1ca3ab2 commit 551734c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
18 changes: 10 additions & 8 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,18 @@ INBOX_RELAY_CONNECTION_RATE_LIMITER_MAX_TOKENS=9
## Import Settings
IMPORT_START_DATE="2023-01-20"
IMPORT_QUERY_INTERVAL_SECONDS=600
IMPORT_SEED_RELAYS_FILE="relays_import.json"

## Backup Settings
BACKUP_PROVIDER="none" # aws, gcp, none (or leave blank to disable)
BACKUP_PROVIDER="none" # s3, none (or leave blank to disable)
BACKUP_INTERVAL_HOURS=1

## AWS Backup Settings - REQUIRED IF BACKUP_PROVIDER="aws"
AWS_ACCESS_KEY_ID="access"
AWS_SECRET_ACCESS_KEY="secret"
AWS_REGION="us-east-1"
AWS_BUCKET_NAME="backups"
## Generic S3 Bucket Backup Settings - REQUIRED IF BACKUP_PROVIDER="s3"
S3_ACCESS_KEY_ID="access"
S3_SECRET_KEY="secret"
S3_ENDPOINT="nyc3.digitaloceanspaces.com"
S3_REGION="nyc3"
S3_BUCKET_NAME="backups"

## GCP Backup Settings - REQUIRED IF BACKUP_PROVIDER="gcp"
GCP_BUCKET_NAME="backups"
## Blastr Settings
BLASTR_RELAYS_FILE="relays_blastr.json"
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,6 @@ To access the logs of the services, run the following command:
./scripts/logs.sh
```

Hier ist die aktualisierte README-Sektion, die den Abruf neuer Release-Tags berücksichtigt:

### 9. Update the Relay

To update the relay, first fetch the latest tags to ensure you have access to any new releases:
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.4
image: holgerhatgarkeinenode/haven-docker:v1.0.5
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.4
image: holgerhatgarkeinenode/haven-docker:v1.0.5
env_file:
- .env
volumes:
Expand Down

0 comments on commit 551734c

Please sign in to comment.