diff --git a/docker-compose.yml b/docker-compose.yml index ba0b606..ed17330 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -199,6 +199,7 @@ services: - redis links: - db:db + - redis:redis - houdini_login:login entrypoint: ["dockerize", "-wait", "tcp://login:${GAME_LOGIN_PORT}", "-template", "/usr/src/dash/config.py.template:/usr/src/dash/config.py", diff --git a/templates/dash/config.py.template b/templates/dash/config.py.template index 58a6014..2fc0b1e 100644 --- a/templates/dash/config.py.template +++ b/templates/dash/config.py.template @@ -30,7 +30,7 @@ Redis configuration Here place the Redis configuration. """ -REDIS_ADDRESS = '0.0.0.0' +REDIS_ADDRESS = 'redis' REDIS_PORT = 6379