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
18 changes: 18 additions & 0 deletions docker/redis-session4.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Config for having sessions in separate redis instance, to be appended after base-prod or base-dev, ..., but before selenium.yml

## WARNING:
# This service is currently work in progress, is not tested by CI, and thus not guaranteed to work.
# You are however more then welcome to try it out and help make it stable.

services:
app:
depends_on:
- redis-session
environment:
- SESSION_HANDLER_ID=Ibexa\Bundle\Core\Session\Handler\NativeSessionHandler
- SESSION_SAVE_PATH=tcp://redis-session:6379?weight=1

redis-session:
image: redis:4.0
networks:
- backend
18 changes: 18 additions & 0 deletions docker/redis-session5.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Config for having sessions in separate redis instance, to be appended after base-prod or base-dev, ..., but before selenium.yml

## WARNING:
# This service is currently work in progress, is not tested by CI, and thus not guaranteed to work.
# You are however more then welcome to try it out and help make it stable.

services:
app:
depends_on:
- redis-session
environment:
- SESSION_HANDLER_ID=Ibexa\Bundle\Core\Session\Handler\NativeSessionHandler
- SESSION_SAVE_PATH=tcp://redis-session:6379?weight=1

redis-session:
image: redis:5.0
networks:
- backend
18 changes: 18 additions & 0 deletions docker/redis-session7.2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Config for having sessions in separate redis instance, to be appended after base-prod or base-dev, ..., but before selenium.yml

## WARNING:
# This service is currently work in progress, is not tested by CI, and thus not guaranteed to work.
# You are however more then welcome to try it out and help make it stable.

services:
app:
depends_on:
- redis-session
environment:
- SESSION_HANDLER_ID=Ibexa\Bundle\Core\Session\Handler\NativeSessionHandler
- SESSION_SAVE_PATH=tcp://redis-session:6379?weight=1

redis-session:
image: redis:7.2
networks:
- backend
19 changes: 19 additions & 0 deletions docker/redis4.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Redis config, to be appended after base-prod or base-dev, ..., but before selenium.yml

## WARNING:
# This service is currently work in progress, is not tested by CI, and thus not guaranteed to work.
# You are however more then welcome to try it out and help make it stable.

services:
app:
depends_on:
- redis
environment:
- CACHE_POOL=cache.redis
- CACHE_DSN=redis:6379
- CACHE_NAMESPACE

redis:
image: redis:4.0
networks:
- backend
19 changes: 19 additions & 0 deletions docker/redis5.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Redis config, to be appended after base-prod or base-dev, ..., but before selenium.yml

## WARNING:
# This service is currently work in progress, is not tested by CI, and thus not guaranteed to work.
# You are however more then welcome to try it out and help make it stable.

services:
app:
depends_on:
- redis
environment:
- CACHE_POOL=cache.redis
- CACHE_DSN=redis:6379
- CACHE_NAMESPACE

redis:
image: redis:5.0
networks:
- backend
19 changes: 19 additions & 0 deletions docker/redis7.2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Redis config, to be appended after base-prod or base-dev, ..., but before selenium.yml

## WARNING:
# This service is currently work in progress, is not tested by CI, and thus not guaranteed to work.
# You are however more then welcome to try it out and help make it stable.

services:
app:
depends_on:
- redis
environment:
- CACHE_POOL=cache.redis
- CACHE_DSN=redis:6379
- CACHE_NAMESPACE

redis:
image: redis:7.2
networks:
- backend
4 changes: 2 additions & 2 deletions php/Dockerfile-7.4
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:7.4-fpm-buster
FROM php:7.4-fpm-bullseye

# Container containing php-fpm and php-cli to run and interact with eZ Platform and other Symfony projects
#
Expand All @@ -25,7 +25,7 @@ RUN apt-get update -q -y \
libjpeg62-turbo \
libxpm4 \
libpng16-16 \
libicu63 \
libicu67 \
libxslt1.1 \
libmemcachedutil2 \
libzip4 \
Expand Down