Created
April 29, 2016 15:32
-
-
Save tstirrat15/60b536f72ec6e4a1ad130a7dd3ddcd4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
rabbit: | |
image: rabbitmq | |
redis: | |
image: redis | |
celery: | |
image: celery | |
depends_on: | |
- rabbit | |
- redis | |
volumes: | |
- ./celeryfiles/:/home/user | |
command: celery -A proj worker --loglevel=debug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment