Deploy Redis
Run Redis 7 on Railway with official image and persistence hints.
railwayapp-redis
Just deployed
Redis for railway.app
Deploy Redis 7 on Railway with the official Docker image.
Persistence
railway.toml declares requiredMountPath = "/data" for AOF/RDB files (append-only is enabled). Attach a Railway volume to that path before production traffic — Railway will prompt for it based on this setting, but it is not created automatically.
Local
docker build -t railwayapp-redis .
docker run --rm -p 6379:6379 railwayapp-redis
Template Content
railwayapp-redis
vergissberlin/railwayapp-redis