Configured redis server for deploy Drupal 8.x and 9.x based projects
50K+
Configured redis server for deploy Drupal 10.x and 11.x based projects
Maintained by: agomezguru
Where to get help:
Docker Official Images: redis
Dockerfile linksThe intent of this image is always being together use with a NGINX docker container and MySQL/MariaDB/Percona database with a simple Dockerfile (in /host/path/) like this one:
cat <<EOF > docker-compose.yml
volumes:
my-public:
external: true
my-db-data:
external: true
services:
web:
image: nginx:latest
ports:
- "80:8080"
volumes:
- ../someCode:/srv
- my-public:/srv/public
networks:
- production-network
php:
image: agomezguru/drupal:10.x-php8.3.8im
volumes:
- ../someCode:/srv
- my-public:/srv/public
- ./php-composer.ini:/usr/local/etc/php/conf.d/custom.ini
networks:
- production-network
redis:
image: agomezguru/redis:latest
networks:
- production-network
db:
image: percona:8.0.34-26
volumes:
- my-db-data:/var/lib/mysql
- ../percona/masterdb/config:/etc/mysql/conf.d
- ../percona/dumps:/backups-db
restart: always
environment:
MYSQL_ROOT_PASSWORD: $environmentPassword
networks:
- production-network
# Isolate docker containers arrays between environments.
networks:
production-network:
driver: bridge
EOF
This container image doesn't support any environment variables.
View Redis license and trademark information for the software contained in this image.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
Content type
Image
Digest
sha256:c9ff349d4…
Size
47.2 MB
Last updated
over 1 year ago
docker pull agomezguru/redis