redis
redis copied to clipboard
Docker Official Image packaging for Redis
With normal redis outsides a container, I can send it a SIGINT or a SIGTERM and it catches it and stops cleanly basically immeadiately. When run with this docker container,...
Closes #390 Closes #401
The Docker Image docker.io/library/redis:alpine is containing files with unsafe permissions, in this case ./usr/local/bin/docker-entrypoint.sh is chmod 777 files whith chmod 777 should be found nowhere on a unix system for...
Would you be open to a patch which removes the unused gosu?
_Ursprünglich gepostet von @UNIX01 in https://github.com/PrinzMichiDE/iptv-kodi-german/issues/2_
The `Dockerfile` currently does not have a `HEALTHCHECK` instruction. Users of the Docker image currently need to add it manually (e.g. via Docker Compose). Instead, the `Dockerfile` itself should include...
Redis Sentinel mode includes a configuration option that allows notifications (to an administrator or client) when a failover occurs. This feature is documented in the [sentinel.conf](https://github.com/redis/redis/blob/unstable/sentinel.conf#L254-L262). When attempting to utilize...
I have two containers in my Docker Compose stack running with non-root user permissions: Redis and MariaDB. ``` mariadb: container_name: mariadb build: context: mariadb volumes: - ${LOGS_DIRECTORY}/mariadb:/var/log/mysql redis: container_name: redis...
https://github.com/redis/docker-library-redis/blob/e5650da99bb377b2ed4f9f1ef993ff24729b1c16/7.4/alpine/Dockerfile#L24 https://github.com/tianon/gosu/issues/151 I created an issue to fix the cve errors linked to https://github.com/redis/redis/issues/13663 After reading this thread I am convinced that gosu shouldn't be used at all. As the...
The `VOLUME` instruction should be removed from the image build. - Containers **already persist state internally** until the container is destroyed (_for example, an image upgraded to a new tag_)....