Skip to content

nogsantos/redis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redis docker container

For development environment purposes.

Setup

Making the image

$ make

Generating a release

$ make release

First Run of the container

$ docker run -it --name nogredis -p 6379:6379 nogsantos/redis

Add -d to to the end of command line leave in background

Ps.: The host port 6379 will be mapped to container, then, to access from the host must be by http:https://127.0.0.1:6379

Stop the container

$ docker stop nogredis

Start the container

$ docker start nogredis

Removing the container

$ docker rm nogredis

Get containers log

$ docker log -f nogredis

Tools

Redis Desktop Manager