Fix celery services inheriting ports from the django's

This commit is contained in:
Nikita P. Shupeyko 2017-07-30 16:36:34 +03:00
parent 813fa60e88
commit 73d97945b8

View File

@ -57,6 +57,7 @@ services:
- redis - redis
- postgres{% if cookiecutter.use_mailhog == 'y' %} - postgres{% if cookiecutter.use_mailhog == 'y' %}
- mailhog{% endif %} - mailhog{% endif %}
ports: []
command: /start-celeryworker-dev.sh command: /start-celeryworker-dev.sh
celerybeat: celerybeat:
@ -66,5 +67,6 @@ services:
- redis - redis
- postgres{% if cookiecutter.use_mailhog == 'y' %} - postgres{% if cookiecutter.use_mailhog == 'y' %}
- mailhog{% endif %} - mailhog{% endif %}
ports: []
command: /start-celerybeat-dev.sh command: /start-celerybeat-dev.sh
{% endif %} {% endif %}