From 4816f40b907724dc9166eba53fd7379be3cbc827 Mon Sep 17 00:00:00 2001 From: AhmedGrati Date: Wed, 25 Jan 2023 09:59:25 +0100 Subject: [PATCH] Fix: remove the infinite goroutine Signed-off-by: AhmedGrati --- cmd/docker-compose.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cmd/docker-compose.yaml diff --git a/cmd/docker-compose.yaml b/cmd/docker-compose.yaml new file mode 100644 index 000000000..4f6feeede --- /dev/null +++ b/cmd/docker-compose.yaml @@ -0,0 +1,16 @@ +version: '3.3' + +services: + servic1: + image: nginx + ports: + - 8081:80 + service2: + image: nginx + ports: + - 8082:80 + service3: + image: nginx + ports: + - 8083:80 +