Skip to main content

Creating Redis service containers

You can use service containers to create a Redis client in your workflow. This guide shows examples of creating a Redis service for jobs that run in containers or directly on the runner machine.

Introduction

This guide shows you workflow examples that configure a service container using the Docker Hubredisimage. The workflow runs a script to create a Redis client and populate the client with data. To test that the workflow creates and populates the Redis client, the script prints the client's data to the console.

Note:If your workflows use Docker container actions, job containers, or service containers, then you must use a Linux runner:

  • If you are using GitHub-hosted runners, you must use an Ubuntu runner.
  • If you are using self-hosted runners, you must use a Linux machine as your runner and Docker must be installed.

Prerequisites

You should be familiar with how service containers work with GitHub Actions and the networking differences between running jobs directly on the runner or in a container. For more information, see "About service containers."

You may also find it helpful to have a basic understanding of YAML, the syntax for GitHub Actions, and Redis. For more information, see:

Running jobs in containers

Configuring jobs to run in a container simplifies networking configurations between the job and the service containers. Docker containers on the same user-defined bridge network expose all ports to each other, so you don't need to map any of the service container ports to the Docker host. You can access the service container from the job container using the label you configure in the workflow.

You can copy this workflow file to the.github/workflowsdirectory of your repository and modify it as needed.

YAML
name:Rediscontainerexample
on:push

jobs:
# Label of the container job
container-job:
# Containers must run in Linux based operating systems
runs-on:ubuntu-latest
# Docker Hub image that `container-job` executes in
container:node:20-bookworm-slim

# Service containers to run with `container-job`
services:
# Label used to access the service container
redis:
# Docker Hub image
image:redis
# Set health checks to wait until redis has started
options:>-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5

steps:
# Downloads a copy of the code in your repository before running CI tests
-name:Checkoutrepositorycode
uses:actions/checkout@v4

# Performs a clean installation of all dependencies in the `package.json` file
# For more information, see https://docs.npmjs /cli/ci.html
-name:Installdependencies
run:npmci

-name:ConnecttoRedis
# Runs a script that creates a Redis client, populates
# the client with data, and retrieves data
run:nodeclient.js
# Environment variable used by the `client.js` script to create a new Redis client.
env:
# The hostname used to communicate with the Redis service container
REDIS_HOST:redis
# The default Redis port
REDIS_PORT:6379

Configuring the container job

This workflow configures a job that runs in thenode:20-bookworm-slimcontainer and uses theubuntu-latestGitHub-hosted runner as the Docker host for the container. For more information about thenode:20-bookworm-slimcontainer, see thenode imageon Docker Hub.

The workflow configures a service container with the labelredis.All services must run in a container, so each service requires that you specify the containerimage.This example uses therediscontainer image, and includes health check options to make sure the service is running. Append a tag to the image name to specify a version, e.g.redis:6.For more information, see theredis imageon Docker Hub.

YAML
jobs:
# Label of the container job
container-job:
# Containers must run in Linux based operating systems
runs-on:ubuntu-latest
# Docker Hub image that `container-job` executes in
container:node:20-bookworm-slim

# Service containers to run with `container-job`
services:
# Label used to access the service container
redis:
# Docker Hub image
image:redis
# Set health checks to wait until redis has started
options:>-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5

Configuring the steps for the container job

The workflow performs the following steps:

  1. Checks out the repository on the runner
  2. Installs dependencies
  3. Runs a script to create a client
YAML
steps:
# Downloads a copy of the code in your repository before running CI tests
-name:Checkoutrepositorycode
uses:actions/checkout@v4

# Performs a clean installation of all dependencies in the `package.json` file
# For more information, see https://docs.npmjs /cli/ci.html
-name:Installdependencies
run:npmci

-name:ConnecttoRedis
# Runs a script that creates a Redis client, populates
# the client with data, and retrieves data
run:nodeclient.js
# Environment variable used by the `client.js` script to create a new Redis client.
env:
# The hostname used to communicate with the Redis service container
REDIS_HOST:redis
# The default Redis port
REDIS_PORT:6379

Theclient.jsscript looks for theREDIS_HOSTandREDIS_PORTenvironment variables to create the client. The workflow sets those two environment variables as part of the "Connect to Redis" step to make them available to theclient.jsscript. For more information about the script, see "Testing the Redis service container."

The hostname of the Redis service is the label you configured in your workflow, in this case,redis.Because Docker containers on the same user-defined bridge network open all ports by default, you'll be able to access the service container on the default Redis port 6379.

Running jobs directly on the runner machine

When you run a job directly on the runner machine, you'll need to map the ports on the service container to ports on the Docker host. You can access service containers from the Docker host usinglocalhostand the Docker host port number.

You can copy this workflow file to the.github/workflowsdirectory of your repository and modify it as needed.

YAML
name:Redisrunnerexample
on:push

jobs:
# Label of the runner job
runner-job:
# You must use a Linux environment when using service containers or container jobs
runs-on:ubuntu-latest

# Service containers to run with `runner-job`
services:
# Label used to access the service container
redis:
# Docker Hub image
image:redis
# Set health checks to wait until redis has started
options:>-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps port 6379 on service container to the host
-6379:6379

steps:
# Downloads a copy of the code in your repository before running CI tests
-name:Checkoutrepositorycode
uses:actions/checkout@v4

# Performs a clean installation of all dependencies in the `package.json` file
# For more information, see https://docs.npmjs /cli/ci.html
-name:Installdependencies
run:npmci

-name:ConnecttoRedis
# Runs a script that creates a Redis client, populates
# the client with data, and retrieves data
run:nodeclient.js
# Environment variable used by the `client.js` script to create
# a new Redis client.
env:
# The hostname used to communicate with the Redis service container
REDIS_HOST:localhost
# The default Redis port
REDIS_PORT:6379

Configuring the runner job

The example uses theubuntu-latestGitHub-hosted runner as the Docker host.

The workflow configures a service container with the labelredis.All services must run in a container, so each service requires that you specify the containerimage.This example uses therediscontainer image, and includes health check options to make sure the service is running. Append a tag to the image name to specify a version, e.g.redis:6.For more information, see theredis imageon Docker Hub.

The workflow maps port 6379 on the Redis service container to the Docker host. For more information about theportskeyword, see "About service containers."

YAML
jobs:
# Label of the runner job
runner-job:
# You must use a Linux environment when using service containers or container jobs
runs-on:ubuntu-latest

# Service containers to run with `runner-job`
services:
# Label used to access the service container
redis:
# Docker Hub image
image:redis
# Set health checks to wait until redis has started
options:>-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps port 6379 on service container to the host
-6379:6379

Configuring the steps for the runner job

The workflow performs the following steps:

  1. Checks out the repository on the runner
  2. Installs dependencies
  3. Runs a script to create a client
YAML
steps:
# Downloads a copy of the code in your repository before running CI tests
-name:Checkoutrepositorycode
uses:actions/checkout@v4

# Performs a clean installation of all dependencies in the `package.json` file
# For more information, see https://docs.npmjs /cli/ci.html
-name:Installdependencies
run:npmci

-name:ConnecttoRedis
# Runs a script that creates a Redis client, populates
# the client with data, and retrieves data
run:nodeclient.js
# Environment variable used by the `client.js` script to create
# a new Redis client.
env:
# The hostname used to communicate with the Redis service container
REDIS_HOST:localhost
# The default Redis port
REDIS_PORT:6379

Theclient.jsscript looks for theREDIS_HOSTandREDIS_PORTenvironment variables to create the client. The workflow sets those two environment variables as part of the "Connect to Redis" step to make them available to theclient.jsscript. For more information about the script, see "Testing the Redis service container."

The hostname islocalhostor127.0.0.1.

Testing the Redis service container

You can test your workflow using the following script, which creates a Redis client and populates the client with some placeholder data. The script then prints the values stored in the Redis client to the terminal. Your script can use any language you'd like, but this example uses Node.js and theredisnpm module. For more information, see thenpm redis module.

You can modifyclient.jsto include any Redis operations needed by your workflow. In this example, the script creates the Redis client instance, adds placeholder data, then retrieves the data.

Add a new file calledclient.jsto your repository with the following code.

JavaScript
constredis =require("redis");

// Creates a new Redis client
// If REDIS_HOST is not set, the default host is localhost
// If REDIS_PORT is not set, the default port is 6379
constredisClient = redis.createClient({
url:`redis://${process.env.REDIS_HOST}:${process.env.REDIS_PORT}`
});

redisClient.on("error",(err) =>console.log("Error",err));

(async() => {
awaitredisClient.connect();

// Sets the key "octocat" to a value of "Mona the octocat"
constsetKeyReply =awaitredisClient.set("octocat","Mona the Octocat");
console.log("Reply:"+ setKeyReply);
// Sets a key to "species", field to "octocat", and "value" to "Cat and Octopus"
constSetFieldOctocatReply=awaitredisClient.hSet("species","octocat","Cat and Octopus");
console.log("Reply:"+SetFieldOctocatReply);
// Sets a key to "species", field to "dinotocat", and "value" to "Dinosaur and Octopus"
constSetFieldDinotocatReply=awaitredisClient.hSet("species","dinotocat","Dinosaur and Octopus");
console.log("Reply:"+SetFieldDinotocatReply);
// Sets a key to "species", field to "robotocat", and "value" to "Cat and Robot"
constSetFieldRobotocatReply=awaitredisClient.hSet("species","robotocat","Cat and Robot");
console.log("Reply:"+SetFieldRobotocatReply);

try{
// Gets all fields in "species" key
constreplies =awaitredisClient.hKeys("species");
console.log(replies.length+"replies:");
replies.forEach((reply, i) =>{
console.log(""+ i +":"+ reply);
});
awaitredisClient.quit();
}
catch(err) {
// statements to handle any exceptions
}
})();

The script creates a new Redis client using thecreateClientmethod, which accepts ahostandportparameter. The script uses theREDIS_HOSTandREDIS_PORTenvironment variables to set the client's IP address and port. Ifhostandportare not defined, the default host islocalhostand the default port is 6379.

The script uses thesetandhsetmethods to populate the database with some keys, fields, and values. To confirm that the Redis client contains the data, the script prints the contents of the database to the console log.

When you run this workflow, you should see the following output in the "Connect to Redis" step confirming you created the Redis client and added data:

Reply: OK
Reply: 1
Reply: 1
Reply: 1
3 replies:
0: octocat
1: dinotocat
2: robotocat