actions-setup-redis
actions-setup-redis copied to clipboard
Save and load Data form disk / dir
how can i config the actions-setup-redis to Save and load Data form a disk?
and how can i access redis out form a docker container but with the 'service name'
Thanks
how can i config the actions-setup-redis to Save and load Data form a disk?
With no configuration, just run redis-cli save and it will place a dump.rdb file on the current working directory.
Add redis-conf: dir /path/to/directory/ if you want to specify where to place the dump.rdb file when you run the command above.