From bc4a02498be7a25a0826d75a161d783476f6b028 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Thu, 25 Jun 2026 12:12:59 +0000 Subject: [PATCH] docs(deployment): add restart policy to nginx service in SSL docker-compose example The nginx reverse proxy service in the production SSL/TLS docker-compose example was missing a restart policy. Without it, Docker will not automatically restart the container if it crashes or the host reboots. Added `restart: unless-stopped` for consistency with the lightning-decoder service in the same example and the best practice pattern used throughout the document. --- DEPLOYMENT_DOCKER.md | 1 + 1 file changed, 1 insertion(+) diff --git a/DEPLOYMENT_DOCKER.md b/DEPLOYMENT_DOCKER.md index 45802f9..da6d251 100644 --- a/DEPLOYMENT_DOCKER.md +++ b/DEPLOYMENT_DOCKER.md @@ -68,6 +68,7 @@ services: nginx: image: nginx:alpine + restart: unless-stopped ports: - "80:80" - "443:443"