Skip to content

appwrite/docker-resque-ui

Repository files navigation

Docker Resque Web UI

Discord Docker Pulls Build Status Twitter Account Follow Appwrite on StackShare

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.

Usage

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  

Build

docker build -t appwrite/resque-web:1.0.0 .

Push

docker push appwrite/resque-web:1.0.0

Find Us

Copyright and license

The MIT License (MIT) http://www.opensource.org/licenses/mit-license.php