romeoz/docker-memcached

By romeoz

Updated almost 7 years ago

Memcached container image which can be linked to other containers.

Image

514

Installation

docker pull romeoz/docker-memcached

Alternately you can build image yourself.

git clone https://github.com/romeoz/docker-memcached.git
cd docker-memcached
docker build -t="$USER/memcached" .

Quick Start

Run memcached container:

docker run --name memcached -d \
  -p 11211:11211 \
  romeoz/docker-memcached

Command-line arguments

You can customize the launch command of Memcached server by specifying arguments to memcached on the docker run command. For example the following command sets max memory to use for items in megabytes:

docker run --name memcached -d \
  -p 11211:11211 \
  romeoz/docker-memcached -m 64

Out of the box

  • Ubuntu 16.04 LTS
  • Memcached 1.4 or 1.5

License

Memcached docker image is open-sourced software licensed under the MIT license

Docker Pull Command

docker pull romeoz/docker-memcached