Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/resources/run-relayers.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ docker compose pull
docker compose up -d
```

Or specify a specific version via the `IMAGE_TAG` environment variable in your `.env` file.
Or specify a specific version via the `IMAGE_TAG` environment variable in your `.env` file. The example `.env` files are pre-configured with the correct image tag (`snowbridge-relayers-v1`).

## Volumes

Expand Down
2 changes: 2 additions & 0 deletions relayer/.env.mainnet.example
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,5 @@ CHANNEL_ID=
# Governance relay configuration
PRIMARY_GOVERNANCE_CHANNEL_ID=0x0000000000000000000000000000000000000000000000000000000000000001
SECONDARY_GOVERNANCE_CHANNEL_ID=0x0000000000000000000000000000000000000000000000000000000000000002

IMAGE_TAG=snowbridge-relayers-v1
2 changes: 2 additions & 0 deletions relayer/.env.paseo.example
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ SS58_PREFIX=42
# Governance relay configuration
PRIMARY_GOVERNANCE_CHANNEL_ID=0x0000000000000000000000000000000000000000000000000000000000000001
SECONDARY_GOVERNANCE_CHANNEL_ID=0x0000000000000000000000000000000000000000000000000000000000000002

IMAGE_TAG=snowbridge-relayers-v1
2 changes: 2 additions & 0 deletions relayer/.env.westend.example
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ SS58_PREFIX=42
# Governance relay configuration
PRIMARY_GOVERNANCE_CHANNEL_ID=0x0000000000000000000000000000000000000000000000000000000000000001
SECONDARY_GOVERNANCE_CHANNEL_ID=0x0000000000000000000000000000000000000000000000000000000000000002

IMAGE_TAG=snowbridge-relayers-v1
2 changes: 1 addition & 1 deletion relayer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-logging: &awslogs
awslogs-create-group: "true"

x-image: &image
image: ghcr.io/snowfork/snowbridge-relay:${IMAGE_TAG:-latest}
image: ghcr.io/snowfork/snowbridge-relay:${IMAGE_TAG:-snowbridge-relayers-v1}
platform: linux/amd64

services:
Expand Down
Loading