{"id":16366548,"url":"https://github.com/centminmod/docker-centos7-memcached","last_synced_at":"2026-01-27T00:08:06.138Z","repository":{"id":27659102,"uuid":"31144743","full_name":"centminmod/docker-centos7-memcached","owner":"centminmod","description":"Docker based Memcached 1.4.22 + CentOS 7.0 for centminmod.com usage","archived":false,"fork":false,"pushed_at":"2015-02-22T13:11:33.000Z","size":120,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-30T23:11:57.632Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/centminmod.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-21T23:05:12.000Z","updated_at":"2016-07-01T17:36:58.000Z","dependencies_parsed_at":"2022-09-03T00:43:50.640Z","dependency_job_id":null,"html_url":"https://github.com/centminmod/docker-centos7-memcached","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/centminmod/docker-centos7-memcached","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos7-memcached","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos7-memcached/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos7-memcached/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos7-memcached/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/centminmod","download_url":"https://codeload.github.com/centminmod/docker-centos7-memcached/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos7-memcached/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28792642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:49:50.245Z","status":"ssl_error","status_checked_at":"2026-01-26T21:48:29.455Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-11T02:46:52.081Z","updated_at":"2026-01-27T00:08:05.714Z","avatar_url":"https://github.com/centminmod.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"My first successfull Docker based image for Memcached 1.4.22 on CentOS 7.0 intended for use with [CentminMod.com LEMP stack](http://centminmod.com). \n\n### My Docker Hub repo\n\n* https://registry.hub.docker.com/u/centminmod/docker-centos7-memcached/\n\n### Centmin Mod Docker Development forums\n\n* https://community.centminmod.com/forums/centmin-mod-docker-development.52/\n\n---\n\n#### Grab from Docker Hub\n\n    docker pull centminmod/docker-centos7-memcached\n\nRun docker container\n\n    docker run -d -p 11211:11211 -t centminmod/docker-centos7-memcached\n\nor specify a name e.g. memc1\n\n    docker run --name memc1 -d -p 11211:11211 -t centminmod/docker-centos7-memcached\n\nor map to 33211 local host port\n\n    docker run --name memc1 -d -p 33211:11211 -t centminmod/docker-centos7-memcached\n\nor allocate a custom memory limit and settings e.g. 512MB memory\n\n    docker run --name memc1 -d -p 33211:11211 -t centminmod/docker-centos7-memcached memcached -m 512\n\nor allocate a custom memory limit and settings e.g. 512MB memory and 2 threads\n\n    docker run --name memc1 -d -p 33211:11211 -t centminmod/docker-centos7-memcached memcached -m 512 -t 2\n\nto access container via bash if started with name = memc1\n\n    docker exec -ti memc1 /bin/bash\n\n---\n\n#### Building from Dockerfile\n\nGrab files\n\n    git clone https://github.com/centminmod/docker-centos7-memcached.git\n\nBuild Docker image called centminmod-memcached from Dockerfile. Run command within same directory as Dockerfile\n\n    docker build -t centminmod-memcached .\n\nRun docker container\n\n    docker run -d -p 11211:11211 -t centminmod-memcached\n\nor specify a name e.g. memc1\n\n    docker run --name memc1 -d -p 11211:11211 -t centminmod-memcached\n\nor map to 33211 local host port\n\n    docker run --name memc1 -d -p 33211:11211 -t centminmod-memcached\n\nor allocate a custom memory limit and settings e.g. 512MB memory\n\n    docker run --name memc1 -d -p 33211:11211 -t centminmod-memcached memcached -m 512\n\nor allocate a custom memory limit and settings e.g. 512MB memory and 2 threads\n\n    docker run --name memc1 -d -p 33211:11211 -t centminmod-memcached memcached -m 512 -t 2    \n\nto access container via bash if started with name = memc1\n\n    docker exec -ti memc1 /bin/bash","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcentminmod%2Fdocker-centos7-memcached","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcentminmod%2Fdocker-centos7-memcached","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcentminmod%2Fdocker-centos7-memcached/lists"}