2019-02-09 19:42:36 +04:00
|
|
|
version: '3.3'
|
|
|
|
services:
|
|
|
|
backend:
|
|
|
|
environment:
|
2019-04-24 22:45:20 +04:00
|
|
|
- JUPYTER=jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888
|
2019-02-09 19:42:36 +04:00
|
|
|
- SERVER_HOST=http://${DOMAIN}
|
|
|
|
celeryworker:
|
|
|
|
environment:
|
|
|
|
- RUN=celery worker -A app.worker -l info -Q main-queue -c 1
|
2019-04-24 22:45:20 +04:00
|
|
|
- JUPYTER=jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888
|
2019-02-09 19:42:36 +04:00
|
|
|
- SERVER_HOST=http://${DOMAIN}
|
|
|
|
backend-tests:
|
|
|
|
environment:
|
2019-04-24 22:45:20 +04:00
|
|
|
- JUPYTER=jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888
|
2020-04-16 23:56:10 -06:00
|
|
|
- SERVER_HOST=http://${DOMAIN}
|