Initial commit - import depuis serveur de recette

This commit is contained in:
manus-admin
2026-05-31 21:56:27 +02:00
commit 5e814dae91
13 changed files with 489 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
portail-santinova:
image: nginx:alpine
container_name: portail-santinova
restart: unless-stopped
volumes:
- ./index.html:/usr/share/nginx/html/index.html:ro
- ./images:/usr/share/nginx/html/images:ro
networks:
- web
labels:
- "traefik.enable=true"
- "traefik.http.routers.portail-santinova.rule=Host(`portail.recette.santinova-soft.org`)"
- "traefik.http.routers.portail-santinova.entrypoints=websecure"
- "traefik.http.routers.portail-santinova.tls.certresolver=letsencrypt"
- "traefik.http.services.portail-santinova.loadbalancer.server.port=80"
networks:
web:
external: true