Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-26T17:24:30.000Z (over 7 years ago)
- Last Synced: 2024-10-02T06:21:03.219Z (about 2 months ago)
- Topics: alpine-linux, docker, memcached, supervisord
- Homepage: https://hub.docker.com/r/theodesp/memcached-alpine/
- Size: 2.93 KB
- Stars: 3
- Watchers: 2
- 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