Skip to content

Commit

Permalink
Removed ports exposing to host machine for redis and DB
Browse files Browse the repository at this point in the history
  • Loading branch information
k-karuna committed Jul 2, 2024
1 parent 8a9bbd8 commit 0a53a3d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ services:
- "8080"
- "26257"
ports:
- "26257:26257"
- "8080:8080"
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8080/health?ready=1" ]
Expand All @@ -141,8 +140,6 @@ services:
- REDIS_PASSWORD=${REDIS_PASSWORD:-}
expose:
- "6379"
ports:
- "6379:6379"
attach: false
restart: unless-stopped
volumes:
Expand Down
2 changes: 1 addition & 1 deletion world.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CARDINAL_LOG_LEVEL = 'info'
CARDINAL_LOG_PRETTY = 'true'
CARDINAL_NAMESPACE = 'defaultnamespace'
CARDINAL_ROLLUP_ENABLED = 'false'
REDIS_ADDRESS = 'localhost:6379'
REDIS_ADDRESS = 'redis:6379'
REDIS_PASSWORD = ''
TELEMETRY_PROFILER_ENABLED = false
TELEMETRY_TRACE_ENABLED = false
Expand Down

0 comments on commit 0a53a3d

Please sign in to comment.