The Wayback Machine - https://web.archive.org/web/20201113040017/https://github.com/appwrite/docker-resque-ui
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

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

You can’t perform that action at this time.