Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grmvoid/docker-redis
🐳 Docker image for Redis
https://github.com/grmvoid/docker-redis
docker docker-image docker-redis dockerfile redis
Last synced: 10 days ago
JSON representation
🐳 Docker image for Redis
- Host: GitHub
- URL: https://github.com/grmvoid/docker-redis
- Owner: grmvoid
- License: mit
- Created: 2023-09-29T03:24:30.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-20T21:32:38.000Z (22 days ago)
- Last Synced: 2025-01-20T22:47:16.857Z (22 days ago)
- Topics: docker, docker-image, docker-redis, dockerfile, redis
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/grmvoid/redis
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Quick reference
- **Image based on**:
[alpine](https://hub.docker.com/_/alpine)- **Supported architectures**:
`linux/amd64`, `linux/arm64`- **Maintained by**:
[grmvoid](https://github.com/grmvoid)- **Where to file issues**:
[https://github.com/grmvoid/docker-redis/issues](https://github.com/grmvoid/docker-redis/issues?q=)## Supported tags and respective `Dockerfile` links
- [`7.4.1`, `7.4`](https://github.com/grmvoid/docker-redis/blob/master/7.4/Dockerfile)
- [`7.2.6`, `7.2`](https://github.com/grmvoid/docker-redis/blob/master/7.2/Dockerfile)## How to use this image
### start a redis instance
```console
$ docker run --name redis -d grmvoid/redis:7.4.1
```### ... via [`docker-compose`](https://github.com/docker/compose)
Example `docker-compose.yml` for `redis`:```yaml
version: '3.1'services:
redis:
image: grmvoid/redis:7.4.1
restart: always
ports:
- "6379:6379"
```## License
View [license](https://redis.io/docs/about/license/) information for the software contained in this image.