Simple container to run gear-visor Web UI service for Gearman monitoring.
1.0K
Simple container to run gear-visor Web UI service.
This docker image is ment to be used in docker-compose.yml alongside with gearmand docker image.
Mount /app/gear_visor_settings.py to override default visor settings.
gearman:
image: pataquets/gearmand
user: nobody
restart: always
visor:
image: bbrodriges/gear-visor
restart: always
links:
- gearman
ports:
- "127.0.0.1:8840:5000"
volumes:
- "./gear_visor_settings.py:/app/gear_visor_settings.py"
# custom gear_visor_settings.py content
# discribes 3 gearman servers
SERVERS = [
{
'alias': 'Jobs',
'host': '76.28.54.120',
'port': 4730
},
{
'alias': 'Wozniak',
'host': 'localhost',
'port': 4730
},
{
'alias': 'Ive',
'host': 'dev.mysite.com',
'port': 5468
}
]
See github
Content type
Image
Digest
Size
54.9 MB
Last updated
about 7 years ago
docker pull bbrodriges/gear-visor