diff --git a/compose.yaml b/compose.yaml index fe19a4f..3ef3f9b 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,4 +1,22 @@ services: + +# Caddy +# Web server, load balancer, and reverse proxy +# https://caddyserver.com/ + caddy: + image: caddy:2.10.2 + restart: "no" + ports: + - "8019:80" + - "2019:2019" + volumes: + - ./data:/usr/share/caddy + +# ---------------------------------------------------------------------- +# Base de données relationnelles +# +# ---------------------------------------------------------------------- + database: image: iut/pgsql:2025-12 environment: @@ -217,18 +235,6 @@ services: - api - graph -# Caddy -# Web server, load balancer, and reverse proxy -# https://caddyserver.com/ - caddy: - image: caddy:2.10.2 - restart: "no" - ports: - - "8019:80" - - "2019:2019" - volumes: - - ./data:/usr/share/caddy - # ---------------------------------------------------------------------- # Web API #