User interface container for the Redis Resque Web UI project. This container include default configuration to allow HTTP basic auth. Not recommended for production environments not running behind a network firewall.
docker-compose.yml
resque:
image: appwrite/resque-web:1.1.0
links:
- redis:redisserver
ports:
- "5678:5678"
environment:
- RESQUE_WEB_HOST=redisserver # (OPTIONAL - Use only if different than the default 127.0.0.1)
- RESQUE_WEB_PORT=6379 # (OPTIONAL - Use only if different the default 6379)
- RESQUE_WEB_HTTP_BASIC_AUTH_USER=user # (OPTIONAL - if not set no password used)
- RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD=password # (OPTIONAL - if not set no password used)
or with docker run
docker run --rm -p 5678:5678 appwrite/resque-web:v1.0.0
docker build -t appwrite/resque-web:1.0.0 .
docker push appwrite/resque-web:1.0.0
The MIT License (MIT) http://www.opensource.org/licenses/mit-license.php