From 2f8d35903c68ca19fb2bdd10f2e6cbe1bf9930b2 Mon Sep 17 00:00:00 2001 From: Leopere Date: Mon, 9 Feb 2026 15:00:11 -0500 Subject: [PATCH] Add restart: always to local compose services Ensures tunnel clients and test services restart automatically whenever Docker is available, including after host reboots. Co-authored-by: Cursor --- docker-compose.test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.test.yml b/docker-compose.test.yml index 0b3ec11..1319e1c 100644 --- a/docker-compose.test.yml +++ b/docker-compose.test.yml @@ -3,6 +3,7 @@ services: test-http: image: nginx:alpine + restart: always volumes: - ./test-index.html:/usr/share/nginx/html/index.html:ro expose: @@ -12,6 +13,7 @@ services: build: context: . target: client + restart: always environment: TUNNEL_SERVER: "ingress.nixc.us:2222" TUNNEL_DOMAIN: "testrst.nixc.us"