├── .dockerignore ├── .github └── workflows │ └── ci.yaml ├── Dockerfile ├── Procfile ├── README.md ├── fly.toml ├── scripts ├── bump_version.sh ├── semver └── version.sh └── start-redis-server.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | fly.toml 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/README.md -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/fly.toml -------------------------------------------------------------------------------- /scripts/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/scripts/bump_version.sh -------------------------------------------------------------------------------- /scripts/semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/scripts/semver -------------------------------------------------------------------------------- /scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/scripts/version.sh -------------------------------------------------------------------------------- /start-redis-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/redis/HEAD/start-redis-server.sh --------------------------------------------------------------------------------