2020-04-19 16:44:12 +02:00
|
|
|
version: "3.3"
|
|
|
|
services:
|
|
|
|
|
|
|
|
proxy:
|
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
- "8090:8080"
|
2020-05-24 23:35:49 +02:00
|
|
|
command:
|
|
|
|
# Enable Docker in Traefik, so that it reads labels from Docker services
|
|
|
|
- --providers.docker
|
|
|
|
# Add a constraint to only use services with the label for this stack
|
|
|
|
# from the env var TRAEFIK_TAG
|
2020-05-25 08:33:36 +02:00
|
|
|
- --providers.docker.constraints=Label(`traefik.constraint-label-stack`, `${TRAEFIK_TAG?Variable not set}`)
|
2020-05-24 23:35:49 +02:00
|
|
|
# Do not expose all Docker services, only the ones explicitly exposed
|
|
|
|
- --providers.docker.exposedbydefault=false
|
|
|
|
# Disable Docker Swarm mode for local development
|
|
|
|
# - --providers.docker.swarmmode
|
|
|
|
# Enable the access log, with HTTP requests
|
|
|
|
- --accesslog
|
|
|
|
# Enable the Traefik log, for configurations and errors
|
|
|
|
- --log
|
|
|
|
# Enable the Dashboard and API
|
|
|
|
- --api
|
|
|
|
# Enable the Dashboard and API in insecure mode for local development
|
|
|
|
- --api.insecure=true
|
2020-04-19 16:44:12 +02:00
|
|
|
labels:
|
|
|
|
- traefik.enable=true
|
2020-05-25 08:33:36 +02:00
|
|
|
- traefik.http.routers.${STACK_NAME?Variable not set}-traefik-public-http.rule=Host(`${DOMAIN?Variable not set}`)
|
|
|
|
- traefik.http.services.${STACK_NAME?Variable not set}-traefik-public.loadbalancer.server.port=80
|
2020-04-19 16:44:12 +02:00
|
|
|
|
|
|
|
pgadmin:
|
|
|
|
ports:
|
|
|
|
- "5050:5050"
|
|
|
|
|
|
|
|
flower:
|
|
|
|
ports:
|
|
|
|
- "5555:5555"
|
|
|
|
|
|
|
|
backend:
|
|
|
|
ports:
|
|
|
|
- "8888:8888"
|
|
|
|
volumes:
|
|
|
|
- ./backend/app:/app
|
|
|
|
environment:
|
|
|
|
- JUPYTER=jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888
|
2020-05-25 08:33:36 +02:00
|
|
|
- SERVER_HOST=http://${DOMAIN?Variable not set}
|
2020-04-19 16:44:12 +02:00
|
|
|
build:
|
|
|
|
context: ./backend
|
|
|
|
dockerfile: backend.dockerfile
|
|
|
|
args:
|
:recycle: Refactor backend, settings, DB sessions, types, configs, plugins (#158)
* :recycle: Refactor backend, update DB session handling
* :sparkles: Add mypy config and plugins
* :heavy_plus_sign: Use Python-jose instead of PyJWT
as it has some extra functionalities and features
* :sparkles: Add/update scripts for test, lint, format
* :wrench: Update lint and format configs
* :art: Update import format, comments, and types
* :art: Add types to config
* :sparkles: Add types for all the code, and small fixes
* :art: Use global imports to simplify exploring with Jupyter
* :recycle: Import schemas and models, instead of each class
* :truck: Rename db_session to db for simplicity
* :pushpin: Update dependencies installation for testing
2020-04-20 19:03:13 +02:00
|
|
|
INSTALL_DEV: ${INSTALL_DEV-true}
|
|
|
|
INSTALL_JUPYTER: ${INSTALL_JUPYTER-true}
|
2020-04-19 16:44:12 +02:00
|
|
|
# command: bash -c "while true; do sleep 1; done" # Infinite loop to keep container live doing nothing
|
|
|
|
command: /start-reload.sh
|
|
|
|
labels:
|
|
|
|
- traefik.enable=true
|
2020-05-25 08:33:36 +02:00
|
|
|
- traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set}
|
|
|
|
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=PathPrefix(`/api`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`)
|
|
|
|
- traefik.http.services.${STACK_NAME?Variable not set}-backend.loadbalancer.server.port=80
|
2020-04-19 16:44:12 +02:00
|
|
|
|
|
|
|
celeryworker:
|
|
|
|
volumes:
|
|
|
|
- ./backend/app:/app
|
|
|
|
environment:
|
|
|
|
- RUN=celery worker -A app.worker -l info -Q main-queue -c 1
|
|
|
|
- JUPYTER=jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888
|
2020-05-25 08:33:36 +02:00
|
|
|
- SERVER_HOST=http://${DOMAIN?Variable not set}
|
2020-04-19 16:44:12 +02:00
|
|
|
build:
|
|
|
|
context: ./backend
|
|
|
|
dockerfile: celeryworker.dockerfile
|
|
|
|
args:
|
:recycle: Refactor backend, settings, DB sessions, types, configs, plugins (#158)
* :recycle: Refactor backend, update DB session handling
* :sparkles: Add mypy config and plugins
* :heavy_plus_sign: Use Python-jose instead of PyJWT
as it has some extra functionalities and features
* :sparkles: Add/update scripts for test, lint, format
* :wrench: Update lint and format configs
* :art: Update import format, comments, and types
* :art: Add types to config
* :sparkles: Add types for all the code, and small fixes
* :art: Use global imports to simplify exploring with Jupyter
* :recycle: Import schemas and models, instead of each class
* :truck: Rename db_session to db for simplicity
* :pushpin: Update dependencies installation for testing
2020-04-20 19:03:13 +02:00
|
|
|
INSTALL_DEV: ${INSTALL_DEV-true}
|
|
|
|
INSTALL_JUPYTER: ${INSTALL_JUPYTER-true}
|
2020-04-19 16:44:12 +02:00
|
|
|
|
|
|
|
frontend:
|
|
|
|
build:
|
|
|
|
context: ./frontend
|
|
|
|
args:
|
|
|
|
FRONTEND_ENV: dev
|
|
|
|
labels:
|
|
|
|
- traefik.enable=true
|
2020-05-25 08:33:36 +02:00
|
|
|
- traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set}
|
2023-12-04 17:09:14 -05:00
|
|
|
# - traefik.http.routers.${STACK_NAME?Variable not set}-frontend-http.rule=PathPrefix(`/`)
|
|
|
|
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-http.rule=Host(`old-frontend.localhost.tiangolo.com`)
|
2020-05-25 08:33:36 +02:00
|
|
|
- traefik.http.services.${STACK_NAME?Variable not set}-frontend.loadbalancer.server.port=80
|
2020-04-19 16:44:12 +02:00
|
|
|
|
2023-12-04 17:09:14 -05:00
|
|
|
new-frontend:
|
|
|
|
build:
|
|
|
|
context: ./new-frontend
|
|
|
|
labels:
|
|
|
|
- traefik.enable=true
|
|
|
|
- traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set}
|
|
|
|
- traefik.http.routers.${STACK_NAME?Variable not set}-new-frontend-http.rule=PathPrefix(`/`)
|
|
|
|
- traefik.http.services.${STACK_NAME?Variable not set}-new-frontend.loadbalancer.server.port=80
|
|
|
|
|
2020-04-19 16:44:12 +02:00
|
|
|
networks:
|
|
|
|
traefik-public:
|
|
|
|
# For local dev, don't expect an external Traefik network
|
|
|
|
external: false
|