Skip to content
Snippets Groups Projects
Commit 611b6746 authored by jurgenhaas's avatar jurgenhaas
Browse files

#53 Update to Redis 7 by default and define 1GB...

#53 Update to Redis 7 by default and define 1GB as max memory by default
parent feeda981
No related branches found
No related tags found
1 merge request!37Merging develop into main
Pipeline #580089 passed
......@@ -124,7 +124,8 @@ class Handler extends BaseHandler {
'enable' => 0,
],
'redis' => [
'version' => '6',
'version' => '7',
'max_memory' => '1GB',
],
'dbbrowser' => [
'type' => 'pma',
......
......@@ -208,6 +208,8 @@ services:
redis:
image: '{{ docker_image_prefix }}wodby/redis:{{ redis.version }}'
environment:
REDIS_MAXMEMORY: '{{ redis.max_memory }}'
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment