From 72bb75a49f56a6bf0aba7c3dce8fb3d81b5e6265 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 28 Nov 2023 11:29:55 +0100 Subject: [PATCH] add container depedency to avoid restart of web container --- compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compose.yml b/compose.yml index 8d06afb..e0857c6 100644 --- a/compose.yml +++ b/compose.yml @@ -2,6 +2,8 @@ version: "3.8" services: web: image: nginx:1.25.3 + depends_on: + - app configs: - source: nginx_conf target: /etc/nginx/nginx.conf