Skip to content

pelumibabs/docker-resque-ui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Resque Web UI

Docker Pulls Discord Travis CI

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

About

Docker container for Resque web UI

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 54.4%
  • Ruby 34.0%
  • Shell 11.6%