You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Michael Truong 4d3331277d Allow overriding of default serving port for Swagger UI 10 years ago
..
Dockerfile added ability to use authentication with environment variables to beanstalkd-console 10 years ago
README.md added ability to use authentication with environment variables to beanstalkd-console 10 years ago
config.php added ability to use authentication with environment variables to beanstalkd-console 10 years ago
install.sh make beanstalkd-console lighter with using php:7-alpine base image 10 years ago

README.md

beanstalkd-console

Admin console for Beanstalk queue server

Usage

$ docker run -d -p 11300:11300 --name beanstalkd schickling/beanstalkd
$ docker run -d -p 2080:2080 --link beanstalkd:beanstalkd schickling/beanstalkd-console

beanstalkd-console automatically works when the Beanstalkd docker container is linked as beanstalkd since it populates the BEANSTALK_SERVERS environment variable with $BEANSTALKD_PORT_11300_TCP_ADDR:11300.

Authentication (Basic Auth)

For using basic auth in console should add these environment variables:
AUTH=enable
AUTH_USERNAME=username (default is admin)
AUTH_PASSWORD=password (default is password)
To run console with auth use this command:

docker run -d -p 2080:2080 --link beanstalkd:beanstalkd -e AUTH=enable -e AUTH_USERNAME=admin -e AUTH_PASSWORD=password schickling/beanstalkd-console