Run update.sh

This commit is contained in:
Docker Library Bot 2015-07-20 12:02:46 -07:00
parent 92b0fb39b7
commit 202a90a0dc
1 changed files with 10 additions and 2 deletions

View File

@ -12,14 +12,22 @@ Celery is an open source asynchronous task queue/job queue based on distributed
# How to use this image
## start a celery worker
## start a celery worker (RabbitMQ Broker)
docker run --link some-rabbit:rabbit --name some-celery -d celery
## check the status of a cluster
### check the status of the cluster
docker run --link some-rabbit:rabbit --rm celery celery status
## start a celery worker (Redis Broker)
docker run --link some-redis:redis -e CELERY_BROKER_URL=redis://redis --name some-celery -d celery
### check the status of the cluster
docker run --link some-redis:redis -e CELERY_BROKER_URL=redis://redis --rm celery celery status
# Supported Docker versions
This image is officially supported on Docker version 1.7.1.