Refactor research pipeline and add webapp

This commit is contained in:
Pawel Sarkowicz
2026-07-31 08:33:52 -04:00
parent 47672c76bf
commit 69a0d51f3c
23 changed files with 4841 additions and 707 deletions
+22
View File
@@ -0,0 +1,22 @@
# Production run behind Caddy. The container only `expose`s its port on the
# shared `caddy` network (no host port), so it coexists with other sites.
# Add a Caddy site block: reverse_proxy factor-risk-decomposition-webapp:8055
services:
factor-risk-webapp:
build:
context: .
dockerfile: webapp/Dockerfile
container_name: factor-risk-decomposition-webapp
restart: unless-stopped
expose:
- "8055"
volumes:
- ./data:/app/data:ro
- ./webapp:/app/webapp:ro
networks:
- proxy
networks:
proxy:
external: true
name: caddy