https://github.com/petronetto/beanstalkd-alpine
Beanstalkd in Alpine Linux
https://github.com/petronetto/beanstalkd-alpine
alpine beanstalk beanstalkd console queues
Last synced: 5 months ago
JSON representation
Beanstalkd in Alpine Linux
- Host: GitHub
- URL: https://github.com/petronetto/beanstalkd-alpine
- Owner: petronetto
- License: bsd-3-clause
- Created: 2017-10-31T01:54:31.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-31T02:02:22.000Z (almost 8 years ago)
- Last Synced: 2025-04-30T04:41:50.137Z (5 months ago)
- Topics: alpine, beanstalk, beanstalkd, console, queues
- Language: PHP
- Homepage: https://hub.docker.com/r/petronetto/beanstalkd-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
# Beanstalkd Alpine
Beanstalkd Alpine[](https://microbadger.com/images/petronetto/beanstalkd-alpine:latest "Get your own image badge on microbadger.com")
[](https://microbadger.com/images/petronetto/beanstalkd-alpine:latest "Get your own version badge on microbadger.com")# Options
```
-b DIR wal directory
-f MS fsync at most once every MS milliseconds (use -f0 for "always fsync")
-F never fsync (default)
-l ADDR listen on address (default is 0.0.0.0)
-p PORT listen on port (default is 11300)
-u USER become user and group
-z BYTES set the maximum job size in bytes (default is 65535)
-s BYTES set the size of each wal file (default is 10485760)
(will be rounded up to a multiple of 512 bytes)
-c compact the binlog (default)
-n do not compact the binlog
-v show version information
-V increase verbosity
-h show this help
```# Usage
```
$ docker run -d -p 11300:11300 --name beanstalkd petronetto/beanstalkd-alpine
```# Console
```
docker run -d -p 2080:2080 \
--link beanstalkd \
--name beanstalk-console \
petronetto/beanstalkd-alpine:console
```