{"id":16540431,"url":"https://github.com/sameersbn/docker-memcached","last_synced_at":"2025-06-20T12:05:21.709Z","repository":{"id":20605146,"uuid":"23886161","full_name":"sameersbn/docker-memcached","owner":"sameersbn","description":"Dockerfile to build a memcached container image which can be linked to other containers.","archived":false,"fork":false,"pushed_at":"2019-07-06T07:56:02.000Z","size":34,"stargazers_count":27,"open_issues_count":1,"forks_count":11,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-25T06:59:17.412Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/sameersbn.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-10T18:14:08.000Z","updated_at":"2023-12-04T10:36:44.000Z","dependencies_parsed_at":"2022-09-25T01:02:19.100Z","dependency_job_id":null,"html_url":"https://github.com/sameersbn/docker-memcached","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameersbn%2Fdocker-memcached","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameersbn%2Fdocker-memcached/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameersbn%2Fdocker-memcached/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameersbn%2Fdocker-memcached/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sameersbn","download_url":"https://codeload.github.com/sameersbn/docker-memcached/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241774237,"owners_count":20018236,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-10-11T18:52:26.022Z","updated_at":"2025-03-04T03:22:14.871Z","avatar_url":"https://github.com/sameersbn.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Circle CI](https://circleci.com/gh/sameersbn/docker-memcached.svg?style=shield)](https://circleci.com/gh/sameersbn/docker-memcached) [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/memcached/status \"Docker Repository on Quay.io\")](https://quay.io/repository/sameersbn/memcached)\n\n\u003e **NOTICE**:\n\u003e\n\u003e Active maintenance of the image has been halted. Your [contributions](#contributing) are welcome.\n\n# sameersbn/memcached:1.5.6-2\n\n- [Introduction](#introduction)\n  - [Contributing](#contributing)\n  - [Issues](#issues)\n- [Getting started](#getting-started)\n  - [Installation](#installation)\n  - [Quickstart](#quickstart)\n  - [Command-line arguments](#command-line-arguments)\n- [Maintenance](#maintenance)\n  - [Upgrading](#upgrading)\n  - [Shell Access](#shell-access)\n\n# Introduction\n\n`Dockerfile` to create a [Docker](https://www.docker.com/) container image for [Memcached](http://memcached.org/).\n\nMemcached is a free \u0026 open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.\n\n## Contributing\n\nIf you find this image useful here's how you can help:\n\n- Send a pull request with your awesome features and bug fixes\n- Help users resolve their [issues](../../issues?q=is%3Aopen+is%3Aissue).\n- Support the development of this image with a [donation](http://www.damagehead.com/donate/)\n\n## Issues\n\nBefore reporting your issue please try updating Docker to the latest version and check if it resolves the issue. Refer to the Docker [installation guide](https://docs.docker.com/installation) for instructions.\n\nSELinux users should try disabling SELinux using the command `setenforce 0` to see if it resolves the issue.\n\nIf the above recommendations do not help then [report your issue](../../issues/new) along with the following information:\n\n- Output of the `docker version` and `docker info` commands\n- The `docker run` command or `docker-compose.yml` used to start the image. Mask out the sensitive bits.\n- Please state if you are using [Boot2Docker](http://www.boot2docker.io), [VirtualBox](https://www.virtualbox.org), etc.\n\n# Getting started\n\n## Installation\n\nAutomated builds of the image are available on [Dockerhub](https://hub.docker.com/r/sameersbn/memcached) and is the recommended method of installation.\n\n\u003e **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/memcached)\n\n```bash\ndocker pull sameersbn/memcached:1.5.6-2\n```\n\nAlternatively you can build the image yourself.\n\n```bash\ndocker build -t sameersbn/memcached github.com/sameersbn/docker-memcached\n```\n\n## Quickstart\n\nStart Memcached using:\n\n```bash\ndocker run --name memcached -d --restart=always \\\n  --publish 11211:11211 \\\n  sameersbn/memcached:1.5.6-2\n```\n\n*Alternatively, you can use the sample [docker-compose.yml](docker-compose.yml) file to start the container using [Docker Compose](https://docs.docker.com/compose/)*\n\n## Command-line arguments\n\nYou can customize the launch command of Memcached server by specifying arguments to `memcached` on the `docker run` command. For example the following command prints the help menu of `memcached` command:\n\n```bash\ndocker run --name memcached -it --rm \\\n  --publish 11211:11211 \\\n  sameersbn/memcached:1.5.6-2 -h\n```\n\n# Maintenance\n\n## Upgrading\n\nTo upgrade to newer releases:\n\n  1. Download the updated Docker image:\n\n  ```bash\n  docker pull sameersbn/memcached:1.5.6-2\n  ```\n\n  2. Stop the currently running image:\n\n  ```bash\n  docker stop memcached\n  ```\n\n  3. Remove the stopped container\n\n  ```bash\n  docker rm -v memcached\n  ```\n\n  4. Start the updated image\n\n  ```bash\n  docker run -name memcached -d \\\n    [OPTIONS] \\\n    sameersbn/memcached:1.5.6-2\n  ```\n\n## Shell Access\n\nFor debugging and maintenance purposes you may want access the containers shell. If you are using Docker version `1.3.0` or higher you can access a running containers shell by starting `bash` using `docker exec`:\n\n```bash\ndocker exec -it memcached bash\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsameersbn%2Fdocker-memcached","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsameersbn%2Fdocker-memcached","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsameersbn%2Fdocker-memcached/lists"}