Skip to content

xhandl/docker-redis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Redis

Run and go Docker setup for Redis.


To start Redis on background via Docker just type:

docker compose up -d

Main parametrs can be modified via .env file.

Default configuration:

IMAGE: redis:7
CONTAINER NAME: redis
PASSWORD: admin
PORT: 6379 (default for Redis)

Data are persisted locally:

./volumes/redis/data

Cmd verification that all is working:

> docker exec -ti redis bash
> redis-cli
> AUTH <password>
ok
> keys *
(empty array)
> exit

Docker network:

redis

About

Run and go Docker setup for Redis

Topics

Resources

Stars

Watchers

Forks