Skip to content

Commit

Permalink
Updated dependency containers (traefik, mariadb, redis):
Browse files Browse the repository at this point in the history
- `traefik:2.10.4` -> `2.11.0`
- `mariadb:10.5` -> `11.3.2`
- `redis:4.0-alpine` -> `7.2.4-alpine`

Updated the following examples:
- `examples/compose`
- `examples/nginx`
- `examples/rdspamd`
- `examples/traefik`

Tested the `traefik` configuration with `anonaddy:1.0.8`.

That's also the reason why I didn't bump the `nginx` image as I didn't test that example.
I only updated the tested images.
  • Loading branch information
luckydonald committed Feb 28, 2024
1 parent 3de44c7 commit 5874c3c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions examples/compose/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: addy

services:
db:
image: mariadb:10.5
image: mariadb:11.3
container_name: addy_db
command:
- "mysqld"
- "mariadbd"
- "--character-set-server=utf8mb4"
- "--collation-server=utf8mb4_unicode_ci"
volumes:
Expand All @@ -18,7 +18,7 @@ services:
restart: always

redis:
image: redis:4.0-alpine
image: redis:7.2-alpine
container_name: addy_redis
restart: always

Expand Down
6 changes: 3 additions & 3 deletions examples/nginx/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: addy

services:
db:
image: mariadb:10.5
image: mariadb:11.3
container_name: addy_db
command:
- "mysqld"
- "mariadbd"
- "--character-set-server=utf8mb4"
- "--collation-server=utf8mb4_unicode_ci"
volumes:
Expand All @@ -18,7 +18,7 @@ services:
restart: always

redis:
image: redis:4.0-alpine
image: redis:7.2-alpine
container_name: addy_redis
restart: always

Expand Down
6 changes: 3 additions & 3 deletions examples/rspamd/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: annoaddy

services:
db:
image: mariadb:10.5
image: mariadb:11.3
container_name: addy_db
command:
- "mysqld"
- "mariadbd"
- "--character-set-server=utf8mb4"
- "--collation-server=utf8mb4_unicode_ci"
volumes:
Expand All @@ -18,7 +18,7 @@ services:
restart: always

redis:
image: redis:4.0-alpine
image: redis:7.2-alpine
container_name: addy_redis
restart: always

Expand Down
8 changes: 4 additions & 4 deletions examples/traefik/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: addy

services:
traefik:
image: traefik:2.5
image: traefik:2.11
container_name: traefik
command:
- "--global.checknewversion=false"
Expand Down Expand Up @@ -36,10 +36,10 @@ services:
restart: always

db:
image: mariadb:10.5
image: mariadb:11.3
container_name: addy_db
command:
- "mysqld"
- "mariadbd"
- "--character-set-server=utf8mb4"
- "--collation-server=utf8mb4_unicode_ci"
volumes:
Expand All @@ -52,7 +52,7 @@ services:
restart: always

redis:
image: redis:4.0-alpine
image: redis:7.2-alpine
container_name: addy_redis
restart: always

Expand Down

0 comments on commit 5874c3c

Please sign in to comment.