Skip to content
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
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
image: mariadb:12
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:8-alpine
container_name: addy_redis
restart: always

Expand Down
8 changes: 4 additions & 4 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
image: mariadb:12
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:8-alpine
container_name: addy_redis
restart: always

Expand All @@ -45,7 +45,7 @@ services:
restart: always

nginx:
image: nginx:1.20.1-alpine
image: nginx:1.29-alpine
container_name: addy_nginx
restart: unless-stopped
ports:
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
image: mariadb:12
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:8-alpine
container_name: addy_redis
restart: always

Expand Down
6 changes: 3 additions & 3 deletions examples/traefik/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ services:
restart: always

db:
image: mariadb:10
image: mariadb:12
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:8-alpine
container_name: addy_redis
restart: always

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

services:
db:
image: mariadb:10
image: mariadb:12
container_name: addy_db
networks:
- addy
command:
- "mysqld"
- "mariadbd"
- "--character-set-server=utf8mb4"
- "--collation-server=utf8mb4_unicode_ci"
volumes:
Expand All @@ -20,7 +20,7 @@ services:
restart: always

redis:
image: redis:4.0-alpine
image: redis:8-alpine
container_name: addy_redis
networks:
- addy
Expand Down