Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ironpeakservices/iron-redis
Secure base image for running Redis.
https://github.com/ironpeakservices/iron-redis
docker redis
Last synced: 2 months ago
JSON representation
Secure base image for running Redis.
- Host: GitHub
- URL: https://github.com/ironpeakservices/iron-redis
- Owner: ironpeakservices
- License: apache-2.0
- Created: 2019-07-22T18:27:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T04:56:48.000Z (10 months ago)
- Last Synced: 2024-11-03T15:38:24.828Z (3 months ago)
- Topics: docker, redis
- Language: Dockerfile
- Homepage: https://github.com/ironPeakServices/iron-redis
- Size: 318 KB
- Stars: 25
- Watchers: 3
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# ironpeakservices/iron-redis
Secure base image for running Redis.`docker pull ghcr.io/ironpeakservices/iron-redis:1.0.0`
## How is this different?
We build from the official redis source code, but additionally:
- an empty scratch container (no shell, unprivileged user, ...) for a tiny attack vector
- secure healthcheck binary for embedded container monitoring
- hardened redis config
- hardened Docker Compose file
- max volume size set to 10GB, max memory set to 4GB
- Continuous vulnerability scanning## Example
```
FROM ghcr.io/ironpeakservices/iron-redis:1.0.0
# add 'requirepass MySecret' into redis.conf
COPY redis.conf /
```## Update policy
Updates to the official redis docker image are automatically created as a pull request and trigger linting & a docker build.
When those checks complete without errors, a merge into master will trigger a deploy with the same version to packages.
A GitHub release will also be created to notify the GitHub subscribers.