Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 322 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 322 Bytes

Docker for Redis

This is a simple Dockerfile for Redis. It is based on the official Redis Docker image.

Usage

To build the image, run:

docker build -t docker-redis .

To run the image and bind to port 6379:

docker run -p 6379:6379 docker-redis