https://github.com/theodesp/beanstalkd-alpine
Beanstalkd image using the latest Alpine Linux and managed by Supervisor
https://github.com/theodesp/beanstalkd-alpine
alpine-linux beanstalkd docker supervisord
Last synced: about 1 year ago
JSON representation
Beanstalkd image using the latest Alpine Linux and managed by Supervisor
- Host: GitHub
- URL: https://github.com/theodesp/beanstalkd-alpine
- Owner: theodesp
- License: mit
- Created: 2017-05-25T14:59:46.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-26T11:51:48.000Z (about 9 years ago)
- Last Synced: 2024-10-19T10:00:21.617Z (over 1 year ago)
- Topics: alpine-linux, beanstalkd, docker, supervisord
- Homepage: https://hub.docker.com/r/theodesp/beanstalkd-alpine/
- Size: 1.95 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Beanstalkd Alpine
A minimal Supervisor managed Beanstalkd deamon for docker using the latest Alpine Linux.
## Usage
Pull and run
```bash
docker pull theodesp/beanstalkd-alpine
docker run -i --name beanstalkd -p 10022:22 -p 11300:11300 -v beanstalkd:/data `docker images -q theodesp/beanstalkd-alpine`
```
## Netcat Examples
Connect to the container and use netcat to check the server
```bash
docker run -it `docker ps -aqf "name=beanstalkd"` /bin/sh
# Stats
echo -e "stats\r\n" | nc localhost 11300
# Tubes
echo -e "list-tubes\r\n" | nc localhost 11300
# Peek Jobs
echo -e "peek-ready\r\n" | nc localhost 11300
```
## Licence
MIT