Skip to content

Commit

Permalink
fix: addressed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sahil9001 committed Oct 23, 2024
1 parent 9f82371 commit bada091
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ services:
volumes:
- ./.env:/home/node/app/.env
environment:
- REDIS_ENABLED=true
- REDIS_URL=redis://redis:6379
REDIS_ENABLED: "true"
REDIS_URL: "redis://redis:6379"

relay-ws:
container_name: hedera-json-rpc-relay-ws
Expand All @@ -21,8 +21,8 @@ services:
environment:
HEALTHCHECK_PORT: 8547
SUBSCRIPTIONS_ENABLED: true
REDIS_ENABLED: true
REDIS_URL: redis://redis:6379
REDIS_ENABLED: "true"
REDIS_URL: "redis://redis:6379"
restart: "unless-stopped"
ports:
- 8546:8546
Expand All @@ -42,4 +42,5 @@ services:
restart: always

volumes:
redis-data:
redis-data:

0 comments on commit bada091

Please sign in to comment.