Add docker compose support for local dev with redis and python support.
Docker instance for app should be able to connect to redis using following ENV config from python application as;
redis_host = os.getenv("REDIS_HOST", "localhost")
redis_port = os.getenv("REDIS_PORT", 6379)