Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: add router key env var on docker compose #40

Merged
merged 1 commit into from
Mar 27, 2024
Merged
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
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ services:
- REDIS_ADDRESS=${REDIS_ADDRESS:-redis:6379}
- REDIS_PASSWORD=${REDIS_PASSWORD}
- REDIS_MODE=normal
- ROUTER_KEY=${ROUTER_KEY}
restart: unless-stopped

cardinal-debug:
Expand Down Expand Up @@ -46,6 +47,7 @@ services:
- REDIS_ADDRESS=${REDIS_ADDRESS:-redis:6379}
- REDIS_PASSWORD=${REDIS_PASSWORD}
- REDIS_MODE=normal
- ROUTER_KEY=${ROUTER_KEY}
restart: unless-stopped

evm:
Expand All @@ -63,6 +65,7 @@ services:
- FAUCET_ADDR=${FAUCET_ADDR:-world142fg37yzx04cslgeflezzh83wa4xlmjpms0sg5}
# Note, ":-" signals a default value of "1s", NOT negative 1 second.
- BLOCK_TIME=${BLOCK_TIME:-1s}
- ROUTER_KEY=${ROUTER_KEY}
image: us-docker.pkg.dev/argus-labs/world-engine/chain:latest
expose:
- "1317"
Expand Down
Loading