Skip to content
Open
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
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can use major

Suggested change
image: mariadb:11.3
image: mariadb:11

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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here

Suggested change
image: redis:7.2-alpine
image: redis:7-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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
image: traefik:2.11
image: traefik:3.2

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