Skip to content

Commit

Permalink
🎉 feat(version): update version to v1.0.0 in docker-compose files
Browse files Browse the repository at this point in the history
  • Loading branch information
fsociety committed Oct 30, 2024
1 parent 0ae4b00 commit 01b8a42
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
12 changes: 9 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
OWNER_NPUB="npub1utx00neqgqln72j22kej3ux7803c2k986henvvha4thuwfkper4s7r50e8"
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 @@ -74,10 +77,10 @@ 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_blastr.json"
IMPORT_SEED_RELAYS_FILE="relays_import.json"

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

## AWS Backup Settings - REQUIRED IF BACKUP_PROVIDER="aws"
Expand All @@ -86,5 +89,8 @@ AWS_SECRET_ACCESS_KEY="secret"
AWS_REGION="us-east-1"
AWS_BUCKET_NAME="backups"

## GCP Backup Settings - REQUIRED IF BACKUP_PROVIDER="gcp"
GCP_BUCKET_NAME="backups"

## Blastr Settings
BLASTR_RELAYS_FILE="relays_blastr.json"
BLASTR_RELAYS_FILE="relays_blastr.json"
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ ARG VERSION
RUN git clone --branch ${VERSION} ${REPO_URL} .

# Download dependencies
ENV GOPROXY=https://proxy.golang.org
RUN go mod download

# Build the Go application
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.tor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
context: .
dockerfile: Dockerfile
args:
VERSION: v0.4.1
VERSION: v1.0.0
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
Expand Up @@ -5,7 +5,7 @@ services:
context: .
dockerfile: Dockerfile
args:
VERSION: v0.4.1
VERSION: v1.0.0
env_file:
- .env
volumes:
Expand Down

0 comments on commit 01b8a42

Please sign in to comment.