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 git clone https://git.ictiberia.com/groales/traefik
cd 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 docker compose up -d
``` ```

View File

@@ -10,7 +10,7 @@ services:
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro - /var/run/docker.sock:/var/run/docker.sock:ro
- ./traefik.yml:/traefik.yml:ro - ./traefik.yml:/traefik.yml:ro
- traefik_letsencrypt:/letsencrypt - ./letsencrypt:/letsencrypt
environment: environment:
TZ: "Europe/Madrid" TZ: "Europe/Madrid"
networks: networks:
@@ -30,6 +30,3 @@ services:
networks: networks:
proxy: proxy:
external: true external: true
volumes:
traefik_letsencrypt: