From 104b6a6ea5c9abec72dbd38fcdbea1122b64aa2f Mon Sep 17 00:00:00 2001 From: "e.medina" Date: Mon, 13 Oct 2025 11:12:42 +0200 Subject: [PATCH] =?UTF-8?q?D=C3=A9placer=20Caddy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- compose.yaml | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) 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 #