Revertir a binds locales para ACME y actualizar README

This commit is contained in:
2025-11-29 17:52:54 +01:00
parent c3a142f8b3
commit 9dd4b54b37
2 changed files with 12 additions and 5 deletions

View File

@@ -43,7 +43,17 @@ docker network create proxy
git clone https://git.ictiberia.com/groales/traefik
cd traefik
# Desplegar (se crea el volumen Docker 'traefik_letsencrypt')
# Crear carpeta y archivo para ACME
mkdir -p letsencrypt
# Windows PowerShell
echo $null > .\letsencrypt\acme.json
# Linux/macOS
# touch ./letsencrypt/acme.json
# Permisos (Linux)
# chmod 600 ./letsencrypt/acme.json
# Desplegar
docker compose up -d
```