registry.hub.docker.com
Open in
urlscan Pro
54.236.113.205
Public Scan
URL:
https://registry.hub.docker.com/_/memcached
Submission: On December 15 via api from UA — Scanned from PL
Submission: On December 15 via api from UA — Scanned from PL
Form analysis
1 forms found in the DOMGET /search
<form class="MuiBox-root css-g7fjmb" method="get" action="/search">
<div class="MuiAutocomplete-root MuiAutocomplete-fullWidth css-kyydiw">
<div class="MuiFormControl-root MuiFormControl-marginDense MuiFormControl-fullWidth MuiTextField-root display-none-default-up display-block-md-up css-1bothhu" data-testid="autocompleteInput">
<div class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-sizeSmall MuiInputBase-adornedStart MuiInputBase-adornedEnd MuiAutocomplete-inputRoot css-4j60tz">
<div class="MuiInputAdornment-root MuiInputAdornment-positionStart MuiInputAdornment-outlined MuiInputAdornment-sizeSmall css-1ftoojq"><span class="notranslate" aria-hidden="true"></span><svg viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg" class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-foypc2" focusable="false" aria-hidden="true" data-testid="SearchIcon">
<path d="M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="currentColor" fill="none" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"></path>
</svg></div><input aria-invalid="false" autocomplete="off" id=":rd:" name="q" placeholder="Search Docker Hub" type="text"
class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputSizeSmall MuiInputBase-inputAdornedStart MuiInputBase-inputAdornedEnd MuiAutocomplete-input MuiAutocomplete-inputFocused css-iipjc8" aria-autocomplete="list"
aria-expanded="false" autocapitalize="none" spellcheck="false" role="combobox" value="">
<div class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeSmall css-1c9fsv3">
<div class="MuiBox-root css-j3iiqs" id="search-keyboard-shortcuts-hint">ctrl+K</div>
</div>
<fieldset aria-hidden="true" class="MuiOutlinedInput-notchedOutline css-17f26qh">
<legend class="css-w4cd9x"><span class="notranslate" aria-hidden="true"></span></legend>
</fieldset>
</div>
</div>
</div>
</form>
Text Content
More Docker. Easy Access. New Streamlined Plans. Learn more. ✕ docker Hub ctrl+K Help Back Documentation Forums Contact support System status System theme Sign inSign up Back Back Help Back Documentation Forums Contact support System status System theme Docker Suite 1. Explore 2. / 3. Official Images 4. / 5. memcached MEMCACHED Docker Official Image • 1B+ • 2.3K Free & open source, high-performance, distributed memory object caching system. Databases & Storage docker pull memcached Copy OverviewTags QUICK REFERENCE * Maintained by: the Docker Community * Where to get help: the Docker Community Slack, Server Fault, Unix & Linux, or Stack Overflow SUPPORTED TAGS AND RESPECTIVE DOCKERFILE LINKS * 1.6.33, 1.6, 1, latest, 1.6.33-bookworm, 1.6-bookworm, 1-bookworm, bookworm * 1.6.33-alpine, 1.6-alpine, 1-alpine, alpine, 1.6.33-alpine3.21, 1.6-alpine3.21, 1-alpine3.21, alpine3.21 QUICK REFERENCE (CONT.) * Where to file issues: https://github.com/docker-library/memcached/issues * Supported architectures: (more info) amd64, arm32v5, arm64v8, i386, mips64le, ppc64le, riscv64, s390x * Published image artifact details: repo-info repo's repos/memcached/ directory (history) (image metadata, transfer size, etc) * Image updates: official-images repo's library/memcached label official-images repo's library/memcached file (history) * Source of this description: docs repo's memcached/ directory (history) WHAT IS MEMCACHED? Memcached is a general-purpose distributed memory caching system. It is often used to speed up dynamic database-driven websites by caching data and objects in RAM to reduce the number of times an external data source (such as a database or API) must be read. Memcached's APIs provide a very large hash table distributed across multiple machines. When the table is full, subsequent inserts cause older data to be purged in least recently used order. Applications using Memcached typically layer requests and additions into RAM before falling back on a slower backing store, such as a database. > wikipedia.org/wiki/Memcached HOW TO USE THIS IMAGE $ docker run --name my-memcache -d memcached Copy CONFIGURATION To customize the configuration of the memcached server, first obtain the upstream configuration options from the container: $ docker run --rm memcached -h Copy Using docker run: $ docker run --name my-memcache -d memcached memcached --memory-limit=64 Copy or using Docker Compose: services: memcached: image: memcached command: - --conn-limit=1024 - --memory-limit=64 - --threads=4 Copy For infomation on configuring your memcached server, see the extensive wiki. IMAGE VARIANTS The memcached images come in many flavors, each designed for a specific use case. MEMCACHED:<VERSION> This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. Some of these tags may have names like bookworm in them. These are the suite code names for releases of Debian and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian. MEMCACHED:<VERSION>-ALPINE This image is based on the popular Alpine Linux project, available in the alpine official image. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use musl libc instead of glibc and friends, so software will often run into issues depending on the depth of their libc requirements/assumptions. See this Hacker News comment thread for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images. To minimize image size, it's uncommon for additional related tools (such as git or bash) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the alpine image description for examples of how to install packages if you are unfamiliar). LICENSE View license information for the software contained in this image. As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). Some additional license information which was able to be auto-detected might be found in the repo-info repository's memcached/ directory. As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within. RECENT TAGS alpine3.21 alpine 1.6.33-alpine3.21 1.6.33-alpine 1.6-alpine3.21 1.6-alpine 1-alpine3.21 1-alpine latest bookworm ABOUT OFFICIAL IMAGES Docker Official Images are a curated set of Docker open source and drop-in solution repositories. WHY OFFICIAL IMAGES? These images have clear documentation, promote best practices, and are designed for the most common use cases. WHY OverviewWhat is a Container PRODUCTS Product Overview PRODUCT OFFERINGS Docker DesktopDocker Hub FEATURES Container RuntimeDeveloper ToolsDocker AppKubernetes DEVELOPERS Getting StartedPlay with DockerCommunityOpen SourceDocumentation COMPANY About UsResourcesBlogCustomersPartnersNewsroomEvents and WebinarsCareersContact UsSystem Status -------------------------------------------------------------------------------- © 2024 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal Cookies Settings Back * System theme * Light theme * Dark theme Back * System theme * Light theme * Dark theme Back Docker Home Explore and manage your Docker experience. Docker Admin Console Manage users, control access, & set policies. Docker Hub Find and share images with your team. Docker Scout Secure your supply chain at every level. Docker Desktop Local development, simplified. Docker Build Cloud Speed up your builds. Testcontainers Cloud New Run integration tests with real dependencies. By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. Cookies Settings Reject All Accept All Cookies PRIVACY PREFERENCE CENTER When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings to find out more and change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer. More information Allow All MANAGE CONSENT PREFERENCES FUNCTIONAL COOKIES Functional Cookies These cookies enable the website to provide enhanced functionality and personalisation. They may be set by us or by third party providers whose services we have added to our pages. If you do not allow these cookies then some or all of these services may not function properly. STRICTLY NECESSARY COOKIES Always Active These cookies are necessary for the website to function and cannot be switched off in our systems. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms. You can set your browser to block or alert you about these cookies, but some parts of the site will not then work. These cookies do not store any personally identifiable information. PERFORMANCE COOKIES Performance Cookies These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us to know which pages are the most and least popular and see how visitors move around the site. All information these cookies collect is aggregated and therefore anonymous. If you do not allow these cookies we will not know when you have visited our site, and will not be able to monitor its performance. TARGETING COOKIES Targeting Cookies These cookies may be set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant adverts on other sites. They do not store directly personal information, but are based on uniquely identifying your browser and internet device. If you do not allow these cookies, you will experience less targeted advertising. Back Button COOKIE LIST Search Icon Filter Icon Clear checkbox label label Apply Cancel Consent Leg.Interest checkbox label label checkbox label label checkbox label label Reject All Confirm My Choices