Déplacement des fichiers docker-compose dans un sous-répertoire.

This commit is contained in:
2026-03-01 16:28:32 +01:00
parent a7f9717b02
commit cebf1ce759
9 changed files with 29 additions and 29 deletions
+15
View File
@@ -0,0 +1,15 @@
services:
mailhog:
restart: unless-stopped
container_name: ${CONTAINER_PREFIX}_mailhog
image: mailhog/mailhog:latest
logging:
driver: 'none'
labels:
- traefik.enable=true
- traefik.http.routers.${CONTAINER_PREFIX}_mailhog.rule=Host(`${MAILHOG_URL}`)
- traefik.http.routers.${CONTAINER_PREFIX}_mailhog.entrypoints=websecure
- traefik.http.services.${CONTAINER_PREFIX}_mailhog.loadbalancer.server.port=8025
networks:
- frontend