Skip to content

francirrenio/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: fassanha/resque-web:1.1.0
  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_DB=0  # (OPTIONAL - Use only if different the default 0)
    - 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 fassanha/resque-web:v1.0.0  

Build

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

Push

docker push fassanha/resque-web:1.0.0

Find Us

Copyright and license

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

About

Docker container for Resque web UI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 54.3%
  • Ruby 32.6%
  • Shell 13.1%