Created
March 27, 2019 14:05
-
-
Save evildmp/ed3971a3a7d8414b865f4fd30973bfdc 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
--- | |
celerybeat: | |
build: "." | |
command: "aldryn-celery beat" | |
env_file: .env-local | |
links: | |
- "db:postgres" | |
- "rabbitmq:rabbitmq" | |
volumes: | |
- ".:/app:rw" | |
- "./ data:/data:rw" | |
celerycam: | |
build: "." | |
command: "aldryn-celery cam" | |
env_file: .env-local | |
links: | |
- "db:postgres" | |
- "rabbitmq:rabbitmq" | |
volumes: | |
- ".:/app:rw" | |
- "./ data:/data:rw" | |
celeryworker: | |
build: "." | |
command: "aldryn-celery worker" | |
env_file: .env-local | |
links: | |
- "db:postgres" | |
- "rabbitmq:rabbitmq" | |
volumes: | |
- ".:/app:rw" | |
- "./ data:/data:rw" | |
db: | |
image: "mdillon/postgis:9.4" | |
ports: | |
- "5432:5432" | |
volumes: | |
- ".:/app:rw" | |
es: | |
image: "elasticsearch:2.3" | |
rabbitmq: | |
environment: | |
RABBITMQ_ERLANG_COOKIE: fqUU0wsdyL0QkdvGg7HlTcQubsCc4iGsez2V34ZiOn85fgjlZQlqNT7N3hZG4oJD | |
expose: | |
- "15672" | |
hostname: rabbitmq | |
image: "rabbitmq:3.5-management" | |
ports: | |
- "15672:15672" | |
web: | |
build: "." | |
command: "python manage.py runserver 0.0.0.0:80" | |
env_file: .env-local | |
links: | |
- "db:postgres" | |
- "es:es" | |
ports: | |
- "8000:80" | |
volumes: | |
- ".:/app:rw" | |
- "./data:/data:rw" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment