Link redis container local network with dash container

This commit is contained in:
Ben 2020-05-20 02:05:46 +01:00
parent 419e057225
commit 58fe6ed2d0
2 changed files with 2 additions and 1 deletions

View File

@ -199,6 +199,7 @@ services:
- redis - redis
links: links:
- db:db - db:db
- redis:redis
- houdini_login:login - houdini_login:login
entrypoint: ["dockerize", "-wait", "tcp://login:${GAME_LOGIN_PORT}", entrypoint: ["dockerize", "-wait", "tcp://login:${GAME_LOGIN_PORT}",
"-template", "/usr/src/dash/config.py.template:/usr/src/dash/config.py", "-template", "/usr/src/dash/config.py.template:/usr/src/dash/config.py",

View File

@ -30,7 +30,7 @@ Redis configuration
Here place the Redis configuration. Here place the Redis configuration.
""" """
REDIS_ADDRESS = '0.0.0.0' REDIS_ADDRESS = 'redis'
REDIS_PORT = 6379 REDIS_PORT = 6379