This docker image provides a minimalistic Symfony3 application for the PHP-Resque web interface
To override the default redis settings, you need to map your custom redis.yml in the container.
Consult the Docker Compose example below for more information.
docker pull gmitirol/resquewebuidocker run --rm -p 80:80 --name resquewebui gmitirol/resquewebuiversion: '2'
services:
resquewebui:
image: gmitirol/resquewebui
ports:
- "80:80"
volumes:
- /srv/resquewebui/resque.yml:/var/www/project/app/config/resque.ymlThe image just provides a minimalistic Symfony3 application for the resque web interface. To add TLS encryption or authentication, please use a web proxy in front of it.
i.e. jwilder/nginx-proxy with jrcs/letsencrypt-nginx-proxy-companion:
...
environment:
- VIRTUAL_HOST=resque.example.com
- VIRTUAL_PORT=80
- LETSENCRYPT_HOST=resque.example.com
- LETSENCRYPT_EMAIL=someone@example.com
...Licensed under MIT License.