memcached service container.
To run this container and bind port 11211:
docker run -d -p 11211:11211 mini/memcached
You can now check the logs:
docker logs <CONTAINER_ID>
But memcached doesn't output too much to be useful 😄
This container by default will set 64MB of maximum RAM to memcached. If you
want to adjust this (bigger or smaller), use MEMCACHED_MEMORY environment
variable and indicate the amount in megabytes (just numbers):
docker run -d -p 11211:11211 -e MEMCACHED_MEMORY=512 mini/memcached
Above will make memcached use 512MB of RAM.
Work on this was made possible thanks to AREA 17.
All the code contained in this repository, unless explicitly stated, is licensed under ISC license.
A copy of the license can be found inside the LICENSE file.