Skip to content

容器化的 celery-flower 服务,针对 Flower 开源项目进行镜像封装,用以提供指定 Celery 的监控&管理功能

License

Notifications You must be signed in to change notification settings

littlemo/docker-celery-flower

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-celery-flower

容器化的 celery-flower 服务,针对 Flower 开源项目进行镜像封装,用以提供指定 Celery 的监控&管理功能。

徽章

GitHub

GitHub followers GitHub repo size in bytes GitHub stars

Docker

Docker Build Status Docker Stars Docker Pulls Docker Automated build

其他

license

镜像标签(tags)

  • littlemo/docker-celery-flower:latest

已安装的软件包声明

基础包

  • flower
  • redis

启动容器

docker-cli

$ docker run -d -p 5555:5555 -v path/to/runtime:/app/runtime --name flower littlemo/docker-celery-flower:latest

$ open http://localhost:5555

docker-compose

version: '2'
services:
  flower:
    image: littlemo/docker-celery-flower
    container_name: flower
    restart: unless-stopped
    ports:
      - "5555:5555"
    volumes:
      # 挂载持久化运行时路径
      - ./path/to/runtime:/app/runtime:rw
    environment:
      CELERY_BROKER_URL: redis://localhost:6379/0
      FLOWER_PERSISTENT: True  # 如果需要持久化Flower数据则使能此配置

License

本项目采用 license 协议开源发布,请您在修改后维持开源发布,并为原作者额外署名,谢谢您的尊重

问题

如果您在使用该镜像时遇到任何问题,请查看镜像源码的 littlemo/docker-celery-flower Repo,并在其中提交 Issues 给我,多谢您的帮助~~

About

容器化的 celery-flower 服务,针对 Flower 开源项目进行镜像封装,用以提供指定 Celery 的监控&管理功能

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages