Storage is a simple redis container with no file storage or backup.
- Storage credentials
The env varREDIS_PASSWORD
must be set storage container- Development configuration: set the env var when starting the container
- Production configuration: set as secret
REDIS_PASSWORD
for componentstorage
in Radix
Read the file dockerfile.storage
for configuration details.
docker build -t redis -f dockerfile.storage .
docker run -it -e REDIS_PASSWORD=<insert-your-password> --name redis redis