Redis cache recipes for Stafli
Stafli Redis Cache System builds based on Debian and CentOS, and developed as scripts for Docker.
Continues on Stafli Supervisor Init builds.
This project is part of the Stafli Application Stack.
Requires Docker Compose 1.6.x or higher due to the version 2 format of the docker-compose.yml files.
There are docker-compose.yml files per distribution, as well as docker-compose.override.yml and .env files, which may be used to override configuration.
An optional Makefile is provided to help with loading these with ease and perform commands in batch.
Scripts are also provided for each distribution to help test and deploy the installation procedures in non-Docker environments.
The images are automatically built at a repository in the Docker Hub registry.
The services use custom images as a starting point for the following distributions:
These are the services described by the dockerfile and docker-compose files:
These are the resulting images upon building:
These containers can be created from the images:
Note: this method will not allow you to use the docker-compose files nor the Makefile.
docker pull <image_url>
docker run -ti <image_url> /bin/bash
Where
Example:
docker pull stafli/stafli.cache.redis:redis32_debian8
docker run -ti stafli/stafli.cache.redis:redis32_debian8 /bin/bash
Note: this method allows using docker-compose and the Makefile.
git clone https://github.com/stafli-org/stafli.cache.redis.git
cd stafli.cache.redis
make <operation> DISTRO=<distro>
Where
Example:
git clone https://github.com/stafli-org/stafli.cache.redis.git;
cd stafli.cache.redis;
# Example #1: quick start, with build
make up DISTRO=debian8;
# Example #2: quick start, with pull
make img-pull DISTRO=debian8;
make up DISTRO=debian8;
# Example #3: manual steps, with build
make img-build DISTRO=debian8;
make vol-create DISTRO=debian8;
make con-create DISTRO=debian8;
make con-start DISTRO=debian8;
make con-ls DISTRO=debian8;
Type make
in the terminal to discover all the possible commands.
Stafli Redis Cache System
Copyright (C) 2016-2017 Stafli
Luís Pedro Algarvio
This file is part of the Stafli Application Stack.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses.