https://github.com/theodesp/memcached-alpine
Memcached docker image using the latest Alpine Linux and managed by Supervisor
https://github.com/theodesp/memcached-alpine
alpine-linux docker memcached supervisord
Last synced: 10 months ago
JSON representation
Memcached docker image using the latest Alpine Linux and managed by Supervisor
- Host: GitHub
- URL: https://github.com/theodesp/memcached-alpine
- Owner: theodesp
- License: mit
- Created: 2017-05-26T14:25:30.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-26T17:24:30.000Z (about 9 years ago)
- Last Synced: 2025-04-10T17:46:02.160Z (about 1 year ago)
- Topics: alpine-linux, docker, memcached, supervisord
- Homepage: https://hub.docker.com/r/theodesp/memcached-alpine/
- Size: 2.93 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Memcached Alpine
A minimal Supervisor managed Memcached deamon for docker using the latest Alpine Linux.
## Usage
Pull and run
```bash
docker pull theodesp/memcached-alpine
docker run -i --name memcached -p 10022:22 -p 11211:11211 `docker images -q theodesp/memcached-alpine`
```
## Netcat Examples
Connect to the container and use netcat to check the server
```bash
docker run -it `docker ps -aqf "name=memcached"` /bin/sh
# Stats
echo -e "stats" | nc localhost 11211
```
## Licence
MIT