2020-04-19 16:44:12 +02:00
|
|
|
services:
|
|
|
|
|
|
|
|
proxy:
|
2024-03-09 01:41:13 +01:00
|
|
|
image: traefik:v2.3
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
2020-04-19 16:44:12 +02:00
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
- "8090:8080"
|
2024-02-25 17:28:26 +01:00
|
|
|
# Duplicate the command from docker-compose.yml to add --api.insecure=true
|
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
|
2024-03-09 01:41:13 +01:00
|
|
|
- --providers.docker.constraints=Label(`traefik.constraint-label`, `traefik-public`)
|
2020-05-24 23:35:49 +02:00
|
|
|
# Do not expose all Docker services, only the ones explicitly exposed
|
|
|
|
- --providers.docker.exposedbydefault=false
|
2024-03-09 01:41:13 +01:00
|
|
|
# Create an entrypoint "http" listening on port 80
|
|
|
|
- --entrypoints.http.address=:80
|
|
|
|
# Create an entrypoint "https" listening on port 443
|
|
|
|
- --entrypoints.https.address=:443
|
2020-05-24 23:35:49 +02:00
|
|
|
# Enable the access log, with HTTP requests
|
|
|
|
- --accesslog
|
|
|
|
# Enable the Traefik log, for configurations and errors
|
|
|
|
- --log
|
2024-03-11 16:34:18 +01:00
|
|
|
# Enable debug logging for local development
|
|
|
|
- --log.level=DEBUG
|
2020-05-24 23:35:49 +02:00
|
|
|
# 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:
|
2024-03-09 01:41:13 +01:00
|
|
|
# Enable Traefik for this service, to make it available in the public network
|
|
|
|
- traefik.enable=true
|
|
|
|
- traefik.constraint-label=traefik-public
|
|
|
|
# Dummy https-redirect middleware that doesn't really redirect, only to
|
|
|
|
# allow running it locally
|
|
|
|
- traefik.http.middlewares.https-redirect.contenttype.autodetect=false
|
2020-04-19 16:44:12 +02:00
|
|
|
|
2024-02-25 10:04:47 -05:00
|
|
|
db:
|
2024-03-11 16:34:18 +01:00
|
|
|
restart: "no"
|
2024-02-25 10:04:47 -05:00
|
|
|
ports:
|
|
|
|
- "5432:5432"
|
|
|
|
|
2024-03-12 18:30:54 +01:00
|
|
|
adminer:
|
2024-03-11 16:34:18 +01:00
|
|
|
restart: "no"
|
2020-04-19 16:44:12 +02:00
|
|
|
ports:
|
2024-03-12 18:30:54 +01:00
|
|
|
- "8080:8080"
|
2020-04-19 16:44:12 +02:00
|
|
|
|
|
|
|
backend:
|
2024-03-11 16:34:18 +01:00
|
|
|
restart: "no"
|
2020-04-19 16:44:12 +02:00
|
|
|
ports:
|
|
|
|
- "8888:8888"
|
|
|
|
volumes:
|
2024-02-25 18:48:02 +01:00
|
|
|
- ./backend/:/app
|
2020-04-19 16:44:12 +02:00
|
|
|
build:
|
|
|
|
context: ./backend
|
|
|
|
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}
|
2024-02-25 17:28:26 +01:00
|
|
|
# command: sleep infinity # Infinite loop to keep container alive doing nothing
|
2020-04-19 16:44:12 +02:00
|
|
|
command: /start-reload.sh
|
|
|
|
|
2024-03-09 01:41:13 +01:00
|
|
|
frontend:
|
2024-03-11 16:34:18 +01:00
|
|
|
restart: "no"
|
2024-03-09 01:41:13 +01:00
|
|
|
build:
|
|
|
|
context: ./frontend
|
|
|
|
args:
|
|
|
|
- VITE_API_URL=http://${DOMAIN?Variable not set}
|
|
|
|
- NODE_ENV=development
|
|
|
|
|
2020-04-19 16:44:12 +02:00
|
|
|
networks:
|
|
|
|
traefik-public:
|
|
|
|
# For local dev, don't expect an external Traefik network
|
|
|
|
external: false
|