Skip to content

Commit

Permalink
fix(process-compose): correctly specify enviroment
Browse files Browse the repository at this point in the history
  • Loading branch information
mzabaluev committed Oct 10, 2024
1 parent e27304a commit 3baea3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ processes:
depends_on:
otlp-collector:
condition: process_started
env:
MOVEMENT_OTLP: http://localhost:4317
environment:
- MOVEMENT_OTLP=http://localhost:4317
m1-da-light-node:
depends_on:
otlp-collector:
condition: process_started
env:
MOVEMENT_OTLP: http://localhost:4317
environment:
- MOVEMENT_OTLP=http://localhost:4317
4 changes: 2 additions & 2 deletions process-compose/suzuka-full-node/process-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ processes:
suzuka-full-node:
command: |
suzuka-full-node
env:
RUST_LOG: info,aptos-indexer=debug
environment:
- RUST_LOG=info
depends_on:
m1-da-light-node:
condition: process_healthy
Expand Down

0 comments on commit 3baea3e

Please sign in to comment.