You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Saving the logs to a file completely sidesteps Docker's logging functionality and renders it useless. i.e., running docker logs [redis_container_id] with the current image will return no output.
In order to allow Docker's log-capturing to work with the image, we need to output to stdout/stderr. Replacing logfile [logpath] in redis.conf with logfile "" fixes this problem. However, since this is a change in functionality, I'm opening an issue first to make sure we're all OK with this change.
Saving the logs to a file completely sidesteps Docker's logging functionality and renders it useless. i.e., running
docker logs [redis_container_id]with the current image will return no output.In order to allow Docker's log-capturing to work with the image, we need to output to stdout/stderr. Replacing
logfile [logpath]in redis.conf withlogfile ""fixes this problem. However, since this is a change in functionality, I'm opening an issue first to make sure we're all OK with this change.