Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@ services:
command: bash -c "cd /app/cwl_wes; gunicorn -c config.py wsgi:app"
volumes:
- ../data/cwl_wes:/data
- ${WES_CONFIG}:${WES_CONFIG}
- ${WES_CONFIG_LOG}:${WES_CONFIG_LOG}
ports:
- "8080:8080"
environment:
- WES_CONFIG
- WES_CONFIG_LOG

wes-worker:
image: elixircloud/cwl-wes:latest
Expand All @@ -26,6 +31,11 @@ services:
command: bash -c "cd /app/cwl_wes; celery worker -A celery_worker -E --loglevel=info"
volumes:
- ../data/cwl_wes:/data
- ${WES_CONFIG}:${WES_CONFIG}
- ${WES_CONFIG_LOG}:${WES_CONFIG_LOG}
environment:
- WES_CONFIG
- WES_CONFIG_LOG

rabbitmq:
image: "rabbitmq:3-management"
Expand Down