Skip to content

Commit

Permalink
feat: Add docker compose config for coordinator
Browse files Browse the repository at this point in the history
  • Loading branch information
morgsmccauley committed Jan 24, 2024
1 parent 36e70ac commit e3d2075
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.9" # optional since v1.27.0
services:

coordinator:
coordinator-v1:
build:
context: ./indexer
args:
Expand All @@ -23,6 +23,21 @@ services:
- mainnet
- from-interruption

coordinator:
build:
context: .
dockerfile: ./coordinator/Dockerfile
args:
- CARGO_BUILD_MODE=debug
depends_on:
- redis
environment:
REDIS_URL: redis://redis
BLOCK_STREAMER_URL: http://block_streamer:8001
RUNNER_URL: http://runner:7001
REGISTRY_CONTRACT_ID: dev-queryapi.dataplatform.near
RUST_LOG: info

runner:
build:
context: ./runner
Expand Down

0 comments on commit e3d2075

Please sign in to comment.