Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ CentOS-7 7.5.1804 x86_64 - Redis 4.0.
- Adds `SSH_AUTOSTART_SUPERVISOR_STDOUT` with a value "false", disabling startup of `supervisor_stdout`.
- Adds improved `healtchcheck` script.
- Adds `docker-compose.yml` to `.dockerignore`.
- Disables disk persistence by default; primary use-case being an LRU cache.

### 2.1.0 - 2019-02-17

Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ADD src /
RUN sed -i -r \
-e "s~^(logfile ).+$~\1\"\"~" \
-e "s~^(bind ).+$~\10.0.0.0~" \
-e "s~^(save [0-9]+ [0-9]+)~#\1~" \
-e "s~^(# *)?(maxmemory ).+$~\2{{REDIS_MAXMEMORY}}~" \
-e "s~^(# *)?(maxmemory-policy ).+$~\2{{REDIS_MAXMEMORY_POLICY}}~" \
-e "s~^(# *)?(maxmemory-samples ).+$~\2{{REDIS_MAXMEMORY_SAMPLES}}~" \
Expand Down
8 changes: 4 additions & 4 deletions src/usr/sbin/redis-server-bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -259,10 +259,10 @@ function main ()
Redis Details
--------------------------------------------------------------------------------
maxmemory : ${redis_maxmemory}
maxmemory-policy: ${redis_maxmemory_policy}
maxmemory-samples: ${redis_maxmemory_samples}
tcp-backlog: ${redis_tcp_backlog}
redis-server options: ${redis_options}
maxmemory-policy : ${redis_maxmemory_policy}
maxmemory-samples : ${redis_maxmemory_samples}
tcp-backlog : ${redis_tcp_backlog}
redis-server options : ${redis_options}
--------------------------------------------------------------------------------
${timer_total}
Expand Down