Skip to content

Commit

Permalink
Update MariaDB and Redis
Browse files Browse the repository at this point in the history
MariaDB 10 picked because 11 renames some binaries and requires further changes (10.7->10.11)
Redis 7.2 picked as the last version with a good license
  • Loading branch information
murrant committed May 22, 2024
1 parent 3fdcc0b commit 3131ae9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/compose/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: librenms

services:
db:
image: mariadb:10.5
image: mariadb:10
container_name: librenms_db
command:
- "mysqld"
Expand All @@ -21,7 +21,7 @@ services:
restart: always

redis:
image: redis:5.0-alpine
image: redis:7.2-alpine
container_name: librenms_redis
environment:
- "TZ=${TZ}"
Expand Down
4 changes: 2 additions & 2 deletions examples/pwd/librenms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ x-envlibrenms: &envlibrenms

services:
db:
image: mariadb:10.5
image: mariadb:10.11
command:
- "mysqld"
- "--innodb-file-per-table=1"
Expand All @@ -43,7 +43,7 @@ services:
restart: always

redis:
image: redis:5.0-alpine
image: redis:7.2-alpine
environment:
TZ: *TZ
restart: always
Expand Down
4 changes: 2 additions & 2 deletions examples/rrdcached-server/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: librenms

services:
db:
image: mariadb:10.5
image: mariadb:10
container_name: librenms_db
command:
- "mysqld"
Expand All @@ -21,7 +21,7 @@ services:
restart: always

redis:
image: redis:5.0-alpine
image: redis:7.2-alpine
container_name: librenms_redis
environment:
- "TZ=${TZ}"
Expand Down
4 changes: 2 additions & 2 deletions examples/traefik/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
restart: always

db:
image: mariadb:10.5
image: mariadb:10
container_name: librenms_db
command:
- "mysqld"
Expand All @@ -55,7 +55,7 @@ services:
restart: always

redis:
image: redis:5.0-alpine
image: redis:7.2-alpine
container_name: librenms_redis
environment:
- "TZ=${TZ}"
Expand Down
4 changes: 2 additions & 2 deletions test/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: librenms

services:
db:
image: mariadb:10.5
image: mariadb:10
container_name: librenms_db
command:
- "mysqld"
Expand All @@ -21,7 +21,7 @@ services:
restart: always

redis:
image: redis:5.0-alpine
image: redis:7.2-alpine
container_name: librenms_redis
environment:
- "TZ=${TZ}"
Expand Down

0 comments on commit 3131ae9

Please sign in to comment.