fix: update traefik-dynamic.yml cert paths to /certs/

The entrypoint writes certs to /certs/ but the dynamic config
referenced /etc/traefik/certs/. Since both are baked into the image,
align the paths so only one volume mount is needed.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-13 16:15:39 +02:00
parent 0a0898b2f7
commit 6cd82de5f9

View File

@@ -20,5 +20,5 @@ tls:
stores:
default:
defaultCertificate:
certFile: /etc/traefik/certs/cert.pem
keyFile: /etc/traefik/certs/key.pem
certFile: /certs/cert.pem
keyFile: /certs/key.pem