Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryan-gordon/rpi-redis
A Docker container for a Redis Server. Compatible with Raspberry Pi.
https://github.com/ryan-gordon/rpi-redis
Last synced: 25 days ago
JSON representation
A Docker container for a Redis Server. Compatible with Raspberry Pi.
- Host: GitHub
- URL: https://github.com/ryan-gordon/rpi-redis
- Owner: Ryan-Gordon
- License: mit
- Created: 2018-05-20T15:47:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-20T15:47:14.000Z (over 6 years ago)
- Last Synced: 2024-06-13T18:51:07.590Z (5 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rpi-redis
[Redis](http://redis.io) for [Docker](https://www.docker.com/) on the [Raspberry Pi](https://www.raspberrypi.org/).This repository holds a Dockerfile used for deploying Redis. It is set up with the hope the Dockerfile will be maintained going forward.
The Dockerfile uses a ARM-friendly base image so that it can be run on a raspberry Pi.+ Redis : Version 3.2.3
+ Base Image : rpi-alpine-scratch:v3.4.# Build
```
git clone [email protected]:Ryan-Gordon/rpi-redis.git
cd rpi-redis
docker build .
```# Run
```
docker run --name redis ryangordon/rpi-redis
```#References:
This project was started from [this repo](https://github.com/frozenfoxx/rpi-redis). Head there if you want to get access to the original project.