{"id":19711717,"url":"https://github.com/brightcommerce/docker-redis","last_synced_at":"2026-05-26T16:04:41.054Z","repository":{"id":20628459,"uuid":"23910106","full_name":"brightcommerce/docker-redis","owner":"brightcommerce","description":"Dockerfile to build a Redis Server container image which can be linked to other containers.","archived":false,"fork":false,"pushed_at":"2014-09-11T12:20:52.000Z","size":116,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-22T16:03:36.594Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brightcommerce.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-11T08:21:19.000Z","updated_at":"2015-11-25T00:19:11.000Z","dependencies_parsed_at":"2022-08-31T01:51:06.258Z","dependency_job_id":null,"html_url":"https://github.com/brightcommerce/docker-redis","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/brightcommerce/docker-redis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brightcommerce%2Fdocker-redis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brightcommerce%2Fdocker-redis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brightcommerce%2Fdocker-redis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brightcommerce%2Fdocker-redis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brightcommerce","download_url":"https://codeload.github.com/brightcommerce/docker-redis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brightcommerce%2Fdocker-redis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33528091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"ssl_error","status_checked_at":"2026-05-26T15:22:15.568Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T22:13:31.025Z","updated_at":"2026-05-26T16:04:41.023Z","avatar_url":"https://github.com/brightcommerce.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Redis\n\nDockerfile to build a Redis Server container image which can be linked to other containers.\n\n## Table of Contents\n- [Version](#version)\n- [Installation](#installation)\n- [How To Use](#how-to-use)\n- [Configuration](#configuration)\n    - [Ports](#ports)\n    - [Data Store](#data-store)\n- [Upgrading](#upgrading)\n- [Credit](#credit)\n\n## Version\n\nThe current release (2.8.14) contains scripts to install Redis Server v2.8.14, and uses the Brightcommerce Ubuntu 14.04 base image. Our version numbers will reflect the version of Redis Server being installed.\n\n## Installation\n\nPull the latest version of the image from the Docker Index. This is the recommended method of installation as it is easier to update the image in the future. These builds are performed by the **Docker Trusted Build** service.\n\n``` bash\ndocker pull brightcommerce/redis:latest\n```\n\nor specify a tagged version:\n\n``` bash\ndocker pull brightcommerce/redis:2.8.14\n```\n\nAlternately you can build the image yourself:\n\n``` bash\ngit clone https://github.com/brightcommerce/docker-redis.git\ncd docker-redis\ndocker build -t=\"$USER/redis\" .\n```\n\n## How To Use\n\nRun the Redis image:\n\n``` bash\ndocker run --name redis -d brightcommerce/redis:latest\n```\n\nTo test if the Redis server is configured properly, try connecting to the server.\n\n``` bash\nredis-cli -h $(docker inspect --format {{.NetworkSettings.IPAddress}} redis)\n```\n\nIf the `redis-cli` client isn't installed on the host you can use `docker-enter` to shell into the container and run it from there:\n\n``` bash\nsudo docker-enter redis\nroot@9a34e83ea636:~# redis-cli\n127.0.0.1:6379\u003e INFO server\n# Server\nredis_version:2.8.14\nredis_git_sha1:00000000\nredis_git_dirty:0\nredis_build_id:b84ccf22550d3c52\nredis_mode:standalone\nos:Linux 3.16.1+ x86_64\narch_bits:64\nmultiplexing_api:epoll\ngcc_version:4.8.2\nprocess_id:11\nrun_id:cc85d4e2aefa545699aa4710a56d240688fcd0e8\ntcp_port:6379\nuptime_in_seconds:330\nuptime_in_days:0\nhz:10\nlru_clock:1058886\nconfig_file:/etc/redis/redis.conf\n127.0.0.1:6379\u003e QUIT\nroot@9a34e83ea636:~# logout\n```\n\n## Configuration\n\n### Ports\n\nThis installation exposes port `6379`.\n\n### Data Store\n\nFor data persistence a volume should be mounted at `/var/lib/redis`.\n\nThe updated run command looks like this:\n\n``` bash\nmkdir -p /opt/redis\ndocker run -name redis -d -v /opt/redis:/var/lib/redis brightcommerce/redis:latest\n```\n\nThis will make sure that the data stored in the database is not lost when the image is stopped and restarted.\n\n## Upgrading\n\nTo upgrade to newer releases, simply follow this 3 step upgrade procedure.\n\n- **Step 1**: Stop the currently running image:\n\n``` bash\ndocker stop redis\n```\n\n- **Step 2**: Update the docker image:\n\n``` bash\ndocker pull brightcommerce/redis:latest\n```\n\n- **Step 3**: Start the image:\n\n``` bash\ndocker run -name redis -d [OPTIONS] brightcommerce/redis:latest\n```\n\n## Credit\n\nThis repository was based on the work of [docker-redis by Sameer Naik](https://github.com/sameersbn/docker-redis).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrightcommerce%2Fdocker-redis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrightcommerce%2Fdocker-redis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrightcommerce%2Fdocker-redis/lists"}