NOTICE:
Active maintenance of the image has been halted. Your contributions are welcome.
Dockerfile to create a Docker container image for Memcached.
Memcached is a free & 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.
If you find this image useful here's how you can help:
Before reporting your issue please try updating Docker to the latest version and check if it resolves the issue. Refer to the Docker installation guide for instructions.
SELinux users should try disabling SELinux using the command setenforce 0 to see if it resolves the issue.
If the above recommendations do not help then report your issue along with the following information:
docker version and docker info commandsdocker run command or docker-compose.yml used to start the image. Mask out the sensitive bits.Automated builds of the image are available on Dockerhub and is the recommended method of installation.
Note: Builds are also available on Quay.io
docker pull sameersbn/memcached:1.5.6-2
Alternatively you can build the image yourself.
docker build -t sameersbn/memcached github.com/sameersbn/docker-memcached
Start Memcached using:
docker run --name memcached -d --restart=always \
--publish 11211:11211 \
sameersbn/memcached:1.5.6-2
Alternatively, you can use the sample docker-compose.yml file to start the container using Docker Compose
You 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:
docker run --name memcached -it --rm \
--publish 11211:11211 \
sameersbn/memcached:1.5.6-2 -h
To upgrade to newer releases:
docker pull sameersbn/memcached:1.5.6-2
docker stop memcached
docker rm -v memcached
docker run -name memcached -d \
[OPTIONS] \
sameersbn/memcached:1.5.6-2
For 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:
docker exec -it memcached bash
Content type
Image
Digest
sha256:17c1f101a…
Size
37.5 MB
Last updated
about 7 years ago
docker pull sameersbn/memcached